typescript-express-starter 8.1.2 → 8.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.kr.md CHANGED
@@ -107,6 +107,7 @@ $ npx typescript-express-starter "project name"
107
107
  | Knex | 쿼리 빌더를 위한 라이브러리 |
108
108
  | GraphQL | API 용 쿼리 언어이며 기존 데이터로 이러한 쿼리를 수행하기위한 런타임 |
109
109
  | Typegoose | 타입스크립트 클래스를 사용하여 몽구스 모델 정의 |
110
+ | mikro-orm (개발중) | 데이터 매퍼, 작업 단위 및 아이덴티티 맵 패턴을 기반으로 하는 Node.js용 TypeScript ORM. MongoDB, MySQL, MariaDB, PostgreSQL 및 SQLite 데이터베이스를 지원합니다. |
110
111
 
111
112
  ## 🛎 Script 명령어
112
113
 
@@ -372,6 +373,8 @@ VSCode Extension에서 [REST Client](https://marketplace.visualstudio.com/items?
372
373
 
373
374
  - David Stewart [https://github.com/davidjmstewart](https://github.com/davidjmstewart)
374
375
 
376
+ - JagTheFriend [JagTheFriend](https://github.com/JagTheFriend)
377
+
375
378
  ## 💳 라이센스
376
379
 
377
380
  [MIT](LICENSE)
package/README.md CHANGED
@@ -100,17 +100,18 @@ Start your typescript-express-starter app in development mode at `http://localho
100
100
 
101
101
  #### Template Type
102
102
 
103
- | Name | Description |
104
- | :------------------ | :----------------------------------------------------------------------------------------------------------- |
105
- | Default | Express Default |
106
- | Routing Controllers | Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage |
107
- | Sequelize | Easy to use multi SQL dialect ORM for Node.js |
108
- | Mongoose | MongoDB Object Modeling(ODM) designed to work in an asynchronous environment |
109
- | TypeORM | An ORM that can run in Node.js and Others |
110
- | Prisma | Modern Database Access for TypeScript & Node.js |
111
- | Knex | SQL query builder for Postgres, MySQL, MariaDB, SQLite3 and Oracle |
112
- | GraphQL | query language for APIs and a runtime for fulfilling those queries with your existing data |
113
- | Typegoose | Define Mongoose models using TypeScript classes |
103
+ | Name | Description |
104
+ | :------------------ | :---------------------------------------------------------------------------------------------------------------------------------------------------------- |
105
+ | Default | Express Default |
106
+ | Routing Controllers | Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage |
107
+ | Sequelize | Easy to use multi SQL dialect ORM for Node.js |
108
+ | Mongoose | MongoDB Object Modeling(ODM) designed to work in an asynchronous environment |
109
+ | TypeORM | An ORM that can run in Node.js and Others |
110
+ | Prisma | Modern Database Access for TypeScript & Node.js |
111
+ | Knex | SQL query builder for Postgres, MySQL, MariaDB, SQLite3 and Oracle |
112
+ | GraphQL | query language for APIs and a runtime for fulfilling those queries with your existing data |
113
+ | Typegoose | Define Mongoose models using TypeScript classes |
114
+ | mikro-orm (Develop) | TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, MariaDB, PostgreSQL and SQLite databases. |
114
115
 
115
116
  ## 🛎 Available Commands for the Server
116
117
 
@@ -243,9 +244,7 @@ Modify `.swcrc` file to your source code.
243
244
 
244
245
  ├── /src
245
246
  │ ├── /configs
246
- │ │ ├── development.json
247
- │ │ ├── production.json
248
- │ │ └── test.json
247
+ │ │ ├── index.ts
249
248
  │ │
250
249
  │ ├── /controllers
251
250
  │ │ ├── auth.controller.ts
@@ -300,7 +299,9 @@ Modify `.swcrc` file to your source code.
300
299
 
301
300
  ├── .dockerignore
302
301
  ├── .editorconfig
303
- ├── .env
302
+ ├── .env.development.local
303
+ ├── .env.production.local
304
+ ├── .env.test.local
304
305
  ├── .eslintignore
305
306
  ├── .eslintrc
306
307
  ├── .gitignore
@@ -377,6 +378,8 @@ Modify `.swcrc` file to your source code.
377
378
 
378
379
  - David Stewart [https://github.com/davidjmstewart](https://github.com/davidjmstewart)
379
380
 
381
+ - JagTheFriend [JagTheFriend](https://github.com/JagTheFriend)
382
+
380
383
  ## 💳 License
381
384
 
382
385
  [MIT](LICENSE)
@@ -29,7 +29,7 @@
29
29
  "helmet": "^4.6.0",
30
30
  "hpp": "^0.2.3",
31
31
  "jsonwebtoken": "^8.5.1",
32
- "mongoose": "~6.1.3",
32
+ "mongoose": "~6.2.3",
33
33
  "morgan": "^1.10.0",
34
34
  "swagger-jsdoc": "^6.0.0",
35
35
  "swagger-ui-express": "^4.1.6",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-express-starter",
3
- "version": "8.1.2",
3
+ "version": "8.1.3",
4
4
  "description": "Quick and Easy TypeScript Express Starter",
5
5
  "author": "AGUMON <ljlm0402@gmail.com>",
6
6
  "license": "MIT",