Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moinulmoin/nodejs-typescript-starter
Nodejs + Typescript minimal starter
https://github.com/moinulmoin/nodejs-typescript-starter
dotenv expressjs nodejs tsx typescript
Last synced: 9 days ago
JSON representation
Nodejs + Typescript minimal starter
- Host: GitHub
- URL: https://github.com/moinulmoin/nodejs-typescript-starter
- Owner: moinulmoin
- Created: 2024-01-19T09:40:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-19T09:41:19.000Z (about 1 year ago)
- Last Synced: 2024-11-14T17:51:30.022Z (2 months ago)
- Topics: dotenv, expressjs, nodejs, tsx, typescript
- Language: TypeScript
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```js
"scripts": {
"dev:node": "tsx watch ./src/index.ts", // to watch for code changes
"dev:tsc": "tsc --watch --preserveWatchOutput", // to check for type errors
"dev": "run-p dev:*", // run dev:node and dev:tsc parallelly
"build": "rm -rf ./dist && npx pkgroll --minify", // clean build the package
"start": "node ./dist/index.js" // start the package
},
```