Home

Awesome

Create Inferno App

Note: this is a port of the awesome Create React App for Inferno.

Create Inferno apps with no build configuration.

Create Inferno App works on macOS, Windows, and Linux.<br> If something doesn’t work please file an issue.

Quick Overview

npx create-inferno-app my-app
cd my-app
npm start

(npx comes with npm 5.2+ and higher, see instructions for older npm versions)

Then open http://localhost:3000/ to see your app.<br> When you’re ready to deploy to production, create a minified bundle with npm run build.

<p align='center'> <img src='https://cdn.rawgit.com/facebook/create-react-app/27b42ac/screencast.svg' width='600' alt='npm start'> </p>

Get Started Immediately

You don’t need to install or configure tools like Webpack or Babel.<br> They are preconfigured and hidden so that you can focus on the code.

Just create a project, and you’re good to go.

Creating an App

You’ll need to have Node >= 6 on your local development machine (but it’s not required on the server). You can use nvm (macOS/Linux) or nvm-windows to easily switch Node versions between different projects.

To create a new app, you may choose one of the following methods:

npx

npx create-inferno-app my-app

(npx comes with npm 5.2+ and higher, see instructions for older npm versions)

npm

npm init react-app my-app

npm init <initializer> is available in npm 6+

Yarn

yarn create react-app my-app

yarn create is available in Yarn 0.25+

It will create a directory called my-app inside the current folder.<br> Inside that directory, it will generate the initial project structure and install the transitive dependencies:

my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
└── src
    ├── App.css
    ├── App.js
    ├── App.test.js
    ├── index.css
    ├── index.js
    ├── logo.svg
    └── serviceWorker.js

No configuration or complicated folder structures, just the files you need to build your app.<br> Once the installation is done, you can open your project folder:

cd my-app

Inside the newly created project, you can run some built-in commands:

npm start or yarn start

Runs the app in development mode.<br> Open http://localhost:3000 to view it in the browser.

The page will automatically reload if you make changes to the code.<br> You will see the build errors and lint warnings in the console.

<p align='center'> <img src='https://cdn.rawgit.com/marionebl/create-react-app/9f62826/screencast-error.svg' width='600' alt='Build errors'> </p>

npm test or yarn test

Runs the test watcher in an interactive mode.<br> By default, runs tests related to files changed since the last commit.

Read more about testing.

npm run build or yarn build

Builds the app for production to the build folder.<br> It correctly bundles Inferno in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.<br> By default, it also includes a service worker so that your app loads from local cache on future visits.

Your app is ready to be deployed.

Usage with Inferno (through inferno-compat)

You can use React components with create-inferno-app. All you have is to do is install inferno-compat (npm install --save inferno-compat) and React and ReactDOM will be already aliased to inferno-compat. After installing it you can import any React dependent library or use any code that imports React and that should work fine.

User Guide

(note: Links point to upstream, React)

A copy of the user guide will be created as README.md in your project folder.

How to Update to New Versions?

Please refer to the User Guide for this and other information.

Philosophy

What’s Included?

Your environment will have everything you need to build a modern single-page Inferno app:

Check out this guide for an overview of how these tools fit together.

The tradeoff is that these tools are preconfigured to work in a specific way. If your project needs more customization, you can "eject" and customize it, but then you will need to maintain this configuration.

Popular Alternatives

Create React App is a great fit for:

Here’s a few common cases where you might want to try something else:

All of the above tools can work with little to no configuration.

If you prefer configuring the build yourself, follow this guide.

Contributing

We'd love to have your helping hand on create-inferno-app! See CONTRIBUTING.md for more information on what we're looking for and how to get started.

Inferno Native

Looking for something similar, but for Inferno Native?<br> Check out Create Inferno Native App.

Acknowledgements

We are grateful to the authors of existing related projects for their ideas and collaboration:

License

Create React App is open source software licensed as MIT.