ned-transpile
raw JSON → 1.0.6 verified Fri May 01 auth: no javascript maintenance
An opinionated Node.js project transpiler built on Babel for the ned framework. Version 1.0.6 is the latest stable release, no recent updates. It provides async/await support, ES6+ compilation, sourcemaps, project-root-relative requires, and strict mode enforcement. Designed as a CLI tool and API for transpiling source directories (default ./src to ./build). Requires Node >= 6.0. Differentiators: tightly integrated with ned, opinionated defaults, simple configuration. No active development observed.
Common errors
error Cannot find module 'ned-transpile' ↓
cause Package not installed or not in require path.
fix
Run 'npm install ned-transpile' in your project directory.
Warnings
gotcha Package has no recent updates; may be abandoned or not maintained. ↓
fix Consider using a more maintained alternative like @babel/cli or ts-node.
Install
npm install ned-transpile yarn add ned-transpile pnpm add ned-transpile Imports
- transpile wrong
import transpile from 'ned-transpile'correctconst transpile = require('ned-transpile')
Quickstart
const transpile = require('ned-transpile');
transpile({ src: './src', dest: './build', entries: ['index.js'], verbose: false }).then(() => console.log('Done!'));