Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/douglasjunior/nodejs-babel-vscode-debug
- Owner: douglasjunior
- Archived: true
- Created: 2017-07-25T11:29:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-25T11:47:03.000Z (over 7 years ago)
- Last Synced: 2024-09-24T08:02:09.459Z (4 months ago)
- Topics: babeljs, debug, demo, nodejs, vscode
- Language: JavaScript
- Homepage: http://douglasjunior.me
- Size: 49.8 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)