Nodejs로 자동화 파트 - 1(설정)

내용의 테이블
  • Initializing
  • writing the script

  • Install globally (시스템에서😜)

  • 설명 - nodejs로 작업을 자동화하고 npm에 게시하는 스크립트를 작성하도록 환경 설정
    1부 - 설정, Hello World, 로컬 테스트

    초기화 중

    prerequisites

    • nodejs
    • npm

    create a folder for your project

    cd to the folder -> do npm init

    mkdir npm_script
    cd ./npm_script
    npm init -y
    

    스크립트 작성

    create an index.js file(starting point of your script)


    해시뱅 추가!
    #!/usr/bin/env node
    스크립트가 실행될 환경을 지정합니다.

    해시뱅 없이

    node ./filename.js
    


    해시뱅과 함께

    ./filename.js
    


    이 시점에서 파일은 다음과 같습니다.


    스크립트를 테스트하기 위해 몇 가지 코드를 추가합니다.

    const myAwesomeFunction = () => {
     console.log("Hello World")
    }
    


    어떻게 생겼을까


    이제 코드가 실행되는지 테스트할 수 있습니다.
    그냥 입력하여./index.js

    전역적으로 스크립트 설치

    npm install -g  // in your script directory
    

    now you can access the script anywhere on your system

    *to be continued (writing script to organize files, publishing to npm)

    좋은 웹페이지 즐겨찾기