A boilerplate for building web apps with React, Bublé (a fast ES2015 compiler) and Rollup (tree-shaking bundler). v7.0.0 (latest) updates dependencies. This starter provides a minimal setup with Browsersync for live reloading, StandardJS linting, and separate dev/production builds. It targets modern JavaScript and is not actively maintained, last updated in 2017. Key differentiators: uses Bublé instead of Babel for faster compilation, and Rollup for tree-shaking output.
npm install buble-react-rollup-starterVerified import paths — ran on the pinned version, not inferred.
Install the boilerplate, write a simple React app with a component, and run dev/production builds.
Use a more modern starter like create-react-app or Vite-based templates.
Ensure your Rollup config includes buble() plugin and JSX settings: plugins: [buble({ jsx: 'h' })]Adjust your code to StandardJS style or disable the linter in package.json.
Always use .jsx extension for files containing JSX in imports.
Run `npm install` or `npm install react react-dom`.
Add buble plugin with jsx option in rollup.config.js.
Change import to include .jsx: './components/dummy-component.jsx'
No dependency data recorded yet.