Skip to content

qus1225/study-cli-program

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

파일 구조

  • bin: will contain all executable .js files
  • lib: contains other files which files of bin might use

package.json

  • bin

    • key of this field is command
    • value is file to execute with that command which is
  • main

    • Adding main makes our module both locally and globally usable.
    • tells node that when somebody is trying to import this module locally like
    • If main is missing, then node by default will try to pull index.js file from module’s root directory

npm repo에 배포되지 않은 패키지 설치

  • npm install -g {local_dir_path}
    • ex) npm install -g ./

참고

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published