Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 참조 계수
- try width resources
- 월칙
- 뉴 컨피던스
- colllection
- 부자의그릇
- 비메모리 자원
- Container
- 모두가 기다리는 사람
- 도파민형 인간
- try-with-resources
- 공헌감
- CSS
- 수부타이
- sentry
- 히든 스토리
- kubernetes
- docker
- java
- 쿠버네티스
- ESG
- Infresh
- HTML
- 레퍼런스 복사
- apache kafka
- 이펙티브 자바
- 칭기즈칸의 위대한 장군 수부타이
- 아웃풋법칙
- 과제의 분리
- node
Archives
- Today
- Total
Hi
folder convention 용어 본문
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.md
: how 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 |