Top "Babeljs" questions

Babel (formerly 6to5) is a JavaScript compiler.

How do I setup Babel 6 with Node JS to use ES6 in my Server Side code?

I have read several times the documentation provided at : Node API Babel 6 Docs I'm starting out learning pg-promise following the …

node.js postgresql babeljs pg-promise
Difference between import X and import * as X in node.js (ES6 / Babel)?

I have a node.js library lib written in ES6 (compiled with Babel) in which I export the following submodules: "…

javascript node.js ecmascript-6 babeljs
Webpack import returns undefined, depending on the order of imports

I'm using webpack + babel. I have three modules looking like this: // A.js // some other imports here console.log('A'); …

javascript webpack babeljs
Unable to use Arrow functions inside React component class

I've started a project where I use React JS for the front end an node js in backend. I used …

javascript reactjs ecmascript-6 babeljs ecmascript-next
`Unexpected token import` in `webpack.config.babel.js` when using `{modules: false}`

I have a React project which uses Webpack as the module bundler, and babel-loader to transform it into ES5, using …

javascript webpack ecmascript-6 babeljs webpack-2
SyntaxError with Jest and React and importing CSS files

I am trying to get my first Jest Test to pass with React and Babel. I am getting the following …

reactjs babeljs jestjs
How do I transpile TypeScript to ES6?

Basically I need to be able to write TypeScript code in my IDE (this introduces great ease to development), compile …

javascript typescript ecmascript-6 babeljs
Babel support for Object.entries

I'm looking at the stage 3 proposal of Object.values/Object.entries and I'd really like to use it in my …

javascript babeljs ecmascript-next
Module Build Failed - Webpack, React, Babel

I was following a video tutorial from plural sight. Course name is "Building a Real-time App with React, Flux, Webpack, …

javascript reactjs webpack babeljs ecmascript-7
Webpack with babel-loader not recognizing import keyword

I have this webpack.config.js: module.exports = { entry: './src/admin/client/index.jsx', output: { filename: './src/admin/…

javascript ecmascript-6 webpack babeljs transpiler