Hi

folder convention 용어 본문

Programming/node.js

folder convention 용어

SharingWorld 2018. 8. 11. 15:36

Folder structure differs for build systems and language. Here are some standard conventions...

  • src/: "source" files to build and develop the project.
  • dist/: "distribution", the compiled code/library.
  • lib/: external dependencies (when included directly).
  • test/: the project's tests scripts, mocks, etc.
  • vendor/: dependencies are usually put here via dependency management.
  • bin/: files that get added to your PATH when installed.

Files:

  • README.md: always read this first.
  • LICENSE.md: any rights given to you regarding the project.
  • CONTRIBUTING.mdhow to help out with the project.

Specific (these could go on forever):

  • package.json: describes library and dependencies (if a JS package).
  • composer.json: same as above but for PHP packages via composer.
  • .travis.yml: config file for the Travis CI environment.


'Programming > node.js' 카테고리의 다른 글

package.json  (0) 2018.09.27
http methods  (0) 2018.09.18
express 명령어가 안될 때  (0) 2018.08.10
웹서버에 요청을 보내는 방식  (0) 2018.08.05
npm  (0) 2018.07.29