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.

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.
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.
npm install ned-transpile
yarn add ned-transpile
pnpm add ned-transpile

Shows how to programmatically transpile a Node project from src to build using the default API.

const transpile = require('ned-transpile');
transpile({ src: './src', dest: './build', entries: ['index.js'], verbose: false }).then(() => console.log('Done!'));