250x250
Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
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 31
Archives
Today
Total
관리 메뉴

devlog_owen

231120 TIL) GIT issue 자동으로 끄기,sequelize,NPM 사이트,prettierrc 코드 본문

TIL

231120 TIL) GIT issue 자동으로 끄기,sequelize,NPM 사이트,prettierrc 코드

developer_owen 2023. 11. 20. 20:50
728x90

개인프로젝트 강의 해설 영상

 

들으면서 새로 알게된 것도 당연히 많았지만 원래 알던 것도 이렇게 하는거구나 라는 깨달음을 얻었다.

 


GIT issue 자동으로 끄기

 

Close #이슈번호를 쓰면 이슈가 자동으로 close된다.

그리고 문제없다면 만든 브랜치 delete하는것도 기억하기

 


sequelize.org 

 

Sequelize

Sequelize is a modern TypeScript and Node.js ORM for Oracle, Postgres, MySQL, MariaDB, SQLite and SQL Server, and more. Featuring solid transaction support, relations, eager and lazy loading, read replication and more.

sequelize.org

 

sequelize 관련 명령어들과 기본 문법구조를 알 수 있다. 이제 일일이 노션 안뒤져도 된다


NPM 모듈 사이트

 

 

npm | Home

Bring the best of open source to you, your team, and your company Relied upon by more than 17 million developers worldwide, npm is committed to making JavaScript development elegant, productive, and safe. The free npm Registry has become the center of Java

www.npmjs.com

 

나 왜 이제 이거 안거지... 모듈 갯수가 압도적으로 많은 npm이다. 우스갯소리로 홀수짝수 구분하는 모듈도 있다고 한다.


튜터님의 prettierrc 코드

{
  "singleQuote": true,
  "semi": true,
  "useTabs": false,
  "tabWidth": 2,
  "trailingComma": "all",
  "printWidth": 80,
  "bracketSpacing": true
}

원래 뭐가 좋은지도 모르고 막썼는데 튜터님이 이게 제일 좋다고 하셨다(본인기준)

나도 이제 이걸로만 써야지

프리티어 코드(검색용)

728x90