/node-babel-webpack-starter

A starter Nodejs application with Babel (ES6, ES7+ features) and Wepack (just for bundling) out of the box

Primary LanguageJavaScriptMIT LicenseMIT

Nodejs + Babel + Webpack app starter

Quick Overview

This is a minimalistic starter app to benefit of the flexibility of Babel and of ES6, ES7+, if you you want to use the latest ECMAscript features (e.g. ES6 modules) without waiting for nodejs to support them natively, already configured with a custom .vscode to allow debugging inside Visual studio code IDE

see also node typescript webpack starter

Usage

clone the repository then:

npm install or yarn install

npm start (to start the server)

npm build (to build the code)

Features

  • babel: transpiling from ES6, ES7+ to ES5
  • webpack: bundling the source to a bundle.js
  • live compiling: as well as live reload
  • custom .vscode: added custom vscode configuration to allow easy debugging of the source inside Visual Studio Code