slush-jspm-react

raw JSON →
0.0.1 verified Fri May 01 auth: no javascript deprecated

Slush generator for scaffolding a React project with JSPM (JavaScript Package Manager) and Babel+JSX transpiler. Version 0.0.1, last updated circa 2016. This generator creates a basic React setup using JSPM for module loading and Babel for JSX transformation. It requires Node >=0.10.26 and npm >=1.4.3. The package is not actively maintained and is considered obsolete due to the deprecation of JSPM and evolution of React tooling (e.g., Create React App, Vite). It serves as a historical example of early React + JSPM integration.

error Error: Cannot find module 'slush-jspm-react'
cause Generator not installed globally or not linked correctly.
fix
Run 'npm install -g slush-jspm-react' from any directory.
error Command 'slush' not found
cause Slush itself is not installed globally.
fix
Run 'npm install -g slush' before using generators.
error jspm: command not found
cause JSPM not installed globally.
fix
Run 'npm install -g jspm@0.16.53' or use npx.
deprecated JSPM is no longer maintained; use modern module bundlers like Webpack, Rollup, or Vite.
fix Consider using a different React project starter (e.g., create-react-app, Vite).
deprecated Babel 6 and older JSX transforms are outdated; current Babel versions use new JSX transform.
fix Update to modern Babel config for React (e.g., @babel/preset-react with runtime: 'automatic').
gotcha Generator may fail with Node versions > 0.12 due to outdated dependencies.
fix Use Node 0.10 or 0.12, or upgrade manually to a different starter.
npm install slush-jspm-react
yarn add slush-jspm-react
pnpm add slush-jspm-react

Creates a new project directory, runs the Slush generator to scaffold a React app with JSPM, installs dependencies via JSPM, and starts the development server.

mkdir my-project
cd my-project
slush jspm-react
jspm install
node server