the-party
raw JSON → 0.10.4 verified Fri May 01 auth: no javascript deprecated
A deprecated ES6-to-ES5 transpiler with basic support for source maps. Version 0.10.4 is the latest stable release, but the project has not been updated since 2015. It lacks modern features like JSX, TypeScript, and plugin systems that Babel offers. Released as a CLI tool with minimal documentation, it is now considered abandoned in favor of Babel.
Common errors
error Error: Cannot find module 'the-party' ↓
cause Package name misspelled or not installed.
fix
npm install the-party
error SyntaxError: Unexpected token export ↓
cause The package does not support ES module syntax in input files fully.
fix
Use an alternative transpiler that supports ES modules.
Warnings
deprecated Project is unmaintained since 2015. Do not use for new projects. ↓
fix Migrate to Babel (https://babeljs.io) or swc (https://swc.rs).
gotcha The package may produce incorrect output for modern ES6 features like async/await, generators, and modules. ↓
fix Use a modern transpiler like Babel with appropriate presets.
gotcha Source maps may be incomplete or inaccurate due to lack of updates. ↓
fix Verify output correctness and consider alternative tools.
Install
npm install the-party yarn add the-party pnpm add the-party Imports
- default wrong
import theParty from 'the-party'correctconst theParty = require('the-party')
Quickstart
npx the-party --output dist --source-maps src/**/*.js