Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/douglasjunior/nodejs-babel-vscode-debug

Example project to use NodeJS 6 with babel and vscode debug.
https://github.com/douglasjunior/nodejs-babel-vscode-debug

babeljs debug demo nodejs vscode

Last synced: 13 days ago
JSON representation

Example project to use NodeJS 6 with babel and vscode debug.

Awesome Lists containing this project

README

        

# nodejs-babel-vscode-debug

1. Install the dependencies

```bash
yarn install
```
or
```bash
npm install
```

2. To run with `nodemon` for development.

```bash
npm run dev
```

3. To build.

```bash
npm run build
```

4. To run with `node`.

```bash
npm run build
npm run serve
```

5. To build and run with `node` for production.

```bash
npm start
```

6. To debug in vscode go to **View -> Debug** and click **Play**.

![debug](https://raw.githubusercontent.com/douglasjunior/nodejs-babel-vscode-debug/master/screenshots/debug-vscode.png)