An open API service indexing awesome lists of open source software.

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

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/