Skip to content

Instantly share code, notes, and snippets.

View leandroluk's full-sized avatar
🏠
Working from home

Leandro Santiago Gomes leandroluk

🏠
Working from home
View GitHub Profile

How to start a new backend NodeJS + Typecript project

  1. Commit chore: configuring vscode

    • create an repository on the git.

    • create file .gitignore:

      node_modules
@branneman
branneman / app.js
Last active February 5, 2021 21:58
Node.js application entry-point files
#!/usr/bin/env node
'use strict';
var spawn = require('child_process').spawn;
var args = [
'--harmony',
'app/bootstrap.js'
];