https://github.com/iolo/fast-nodejs-starter
fast and simple nodejs starter kit
https://github.com/iolo/fast-nodejs-starter
Last synced: 4 months ago
JSON representation
fast and simple nodejs starter kit
- Host: GitHub
- URL: https://github.com/iolo/fast-nodejs-starter
- Owner: iolo
- License: mit
- Created: 2021-07-08T01:35:42.000Z (almost 5 years ago)
- Default Branch: develop
- Last Pushed: 2021-07-07T08:34:08.000Z (almost 5 years ago)
- Last Synced: 2025-10-31T08:48:28.237Z (7 months ago)
- Homepage:
- Size: 686 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
> This is a starter project for mixed javascript/typescript [nodejs] module.
>
> Features:
> - Mixed javascript and [typescript].
> - Lint with [eslint], [prettier] and [typescript-eslint].
> - Test with [jest] and [ts-jest].
your-project-name
=================
your-project-description
## getting started
### test
Run [jest] for all js/ts in `test/`.
```console
$ npm run test
```
### build
Compile with [tsc] for all js/ts in `src/` into `dist/`.
```console
$ npm run build
```
### watch(continuous build)
Watch with [tsc] for all js/ts in `src/` directory into `dist/`.
```console
$ npm start
```
May the **SOURCE** be with you...
[eslint]:https://eslint.org/
[jest]:https://jestjs.io/
[nodejs]:https://nodejs.org/
[prettier]:https://prettier.io/
[ts-jest]:https://kulshekhar.github.io/ts-jest/
[tsc]:https://www.typescriptlang.org/
[typescript-eslint]:https://github.com/typescript-eslint/typescript-eslint
[typescript]:https://www.typescriptlang.org/