This is the starter package which I use to get a node app going. The core features are: Typescript compilation for frontend and backend, my default style, my preferred linting rules, a basic express server, vs code tasks to start debugging.

@peter peter authored on 17 Jan 2019
.vscode Created starter configs and examples. 5 years ago
public Created starter configs and examples. 5 years ago
src Created starter configs and examples. 5 years ago
style Created starter configs and examples. 5 years ago
.gitignore Created starter configs and examples. 5 years ago
README.md Created starter configs and examples. 5 years ago
package-lock.json Created starter configs and examples. 5 years ago
package.json Created starter configs and examples. 5 years ago
tsconfig.json Created starter configs and examples. 5 years ago
tslint.json Created starter configs and examples. 5 years ago
README.md

Repository Name

Dev

Install typescript and tslint globally, if you haven't aready.

npm install -g typescript tslint

Local dependencies:

npm install

Build

Compile TypeScript to JavaScript.

tsc

Executing this in the application's root folder will apply the settings from tsconfig.json.

Run

Run the application from the project's root folder.

node dist/app.js