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 | 29 | 30 |
Tags
- node
- 공헌감
- try width resources
- 도파민형 인간
- 월칙
- 칭기즈칸의 위대한 장군 수부타이
- 참조 계수
- 뉴 컨피던스
- 아웃풋법칙
- Infresh
- 이펙티브 자바
- 부자의그릇
- ESG
- 모두가 기다리는 사람
- 히든 스토리
- 레퍼런스 복사
- docker
- kubernetes
- 쿠버네티스
- java
- apache kafka
- colllection
- try-with-resources
- 비메모리 자원
- 수부타이
- 과제의 분리
- CSS
- HTML
- sentry
- Container
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 |