Deprecated development server for react-component projects. Version 3.3.5 is the last release. It provided JSX support, autoprefixing, test runner integration (mocha-phantomjs), and CommonJS bundling for the browser. Replaced by rc-tools (specifically `rc-tools run server`). No longer maintained; users should migrate to rc-tools or modern alternatives like webpack-dev-server or Vite, which offer far better performance, HMR, and broader ecosystem support.
npm install rc-serverNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Sets up a minimal rc-server project with a React component, package.json script, and server start command.
Migrate to rc-tools: install rc-tools, replace 'rc-server' with 'rc-tools run server' in scripts.
Upgrade to a modern server like webpack-dev-server or Vite that supports current Node.js LTS.
Update source files to use modern JSX transform (React 17+'s automatic runtime) and a current build tool.
Run `npm install rc-server --save-dev` in your project directory, then use the command via npx or the node_modules/.bin path.
Use `npx rc-server` or run from project root with `node ./node_modules/.bin/rc-server`.
Add `/** @jsx React.DOM */` at the top of every JSX file, or use a modern transpiler like Babel with the appropriate React preset.