All Projects → naviapps → Create Nw React App

naviapps / Create Nw React App

Licence: mit
Create NW.js React apps with no build configuration.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Create Nw React App

Duckietv
A web application built with AngularJS to track your favorite tv-shows with semi-automagic torrent integration
Stars: ✭ 942 (+748.65%)
Mutual labels:  nwjs
Greenworks
a node.js plugin to integrate nw.js/electron games with steamworks
Stars: ✭ 1,186 (+968.47%)
Mutual labels:  nwjs
Net Mdns
Simple multicast DNS
Stars: ✭ 105 (-5.41%)
Mutual labels:  zero-configuration
Ciao
RFC 6762 and RFC 6763 compliant mdns service discovery library written in Typescript
Stars: ✭ 33 (-70.27%)
Mutual labels:  zero-configuration
Mr2
Mr.2 can help you expose local server to external network. Support both TCP/UDP, of course support HTTP. Zero-Configuration.
Stars: ✭ 1,102 (+892.79%)
Mutual labels:  zero-configuration
Nwjs rpi
[NW.js port for Raspberry Pi] binary compiled for the ARMv6 used in Raspberry Pi (compatible with RPi 2 and RPi 3)
Stars: ✭ 91 (-18.02%)
Mutual labels:  nwjs
Typescript Node Scripts
Create, test, and build Node.js server apps based on TypeScript with zero-configuration
Stars: ✭ 24 (-78.38%)
Mutual labels:  zero-configuration
Nw.js
Call all Node.js modules directly from DOM/WebWorker and enable a new way of writing applications with all Web technologies.
Stars: ✭ 38,611 (+34684.68%)
Mutual labels:  nwjs
Nw Vue Cli Example
NW.js, Vue-CLI 4, Vue-DevTools
Stars: ✭ 63 (-43.24%)
Mutual labels:  nwjs
Nw Ninja
A minimalistic NW.js starter project for ninjas
Stars: ✭ 101 (-9.01%)
Mutual labels:  nwjs
Nwjs Edge Example1
An example using Edge in NW.js directly from the DOM
Stars: ✭ 38 (-65.77%)
Mutual labels:  nwjs
Nuxt Jest Puppeteer
🚀 Nuxt.js zero configuration tests, run with Jest and Puppetter
Stars: ✭ 57 (-48.65%)
Mutual labels:  zero-configuration
Nw.js Armv7 Binaries
NW.js ARMv7 binaries. Instructions for running and building the executable.
Stars: ✭ 92 (-17.12%)
Mutual labels:  nwjs
Quip Export
Export all folders and documents from Quip
Stars: ✭ 28 (-74.77%)
Mutual labels:  zero-configuration
Qqtools
QQ群工具,提供桃叭监听,48系成员直播监听,48系成员信息监听,微博监听,群成员自动欢迎等功能。
Stars: ✭ 106 (-4.5%)
Mutual labels:  nwjs
Elm Kitchen
Easily bootstrap a new Elm SPA
Stars: ✭ 21 (-81.08%)
Mutual labels:  zero-configuration
Pric
Simple zero-config tool to create Private Certificate Authority & issue locally-trusted development server certificates with any domain names you'd like. SSL certificates for development purposes.
Stars: ✭ 87 (-21.62%)
Mutual labels:  zero-configuration
Meteor
Meteor, the JavaScript App Platform
Stars: ✭ 42,739 (+38403.6%)
Mutual labels:  zero-configuration
Nuwk
Nuwk! makes it easy to create Mac Applications based on node-webkit, simplifying testing and building procedures. It takes care of creating the executable, attaching the app icon and configuring the plist file accordingly.
Stars: ✭ 106 (-4.5%)
Mutual labels:  nwjs
Jetpack
🚀 Jetpack – Webpack made more convenient.
Stars: ✭ 1,326 (+1094.59%)
Mutual labels:  zero-configuration

Create NW.js React App PRs Welcome

Create NW.js React apps with no build configuration.

Create NW.js React App works on macOS, Windows, and Linux.
If something doesn’t work, please file an issue.

Quick Overview

npx create-nw-react-app my-app
cd my-app
npm start

If you've previously installed create-nw-react-app globally via npm install -g create-nw-react-app, we recommend you uninstall the package using npm uninstall -g create-nw-react-app to ensure that npx always uses the latest version.

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

Then open to see your app or http://localhost:3000/ to view it in the browser.
When you’re ready to deploy to production, create a minified bundle with npm run build.

npm start

Get Started Immediately

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

Create a project, and you’re good to go.

Creating an App

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

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

npx

npx create-nw-react-app my-app

(npx is a package runner tool that comes with npm 5.2+ and higher, see instructions for older npm versions)

npm

npm init nw-react-app my-app

npm init <initializer> is available in npm 6+

Yarn

yarn create nw-react-app my-app

yarn create <starter-kit-package> is available in Yarn 0.25+

It will create a directory called my-app inside the current folder.
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
    └── setupTests.js

No configuration or complicated folder structures, only the files you need to build your app.
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.
Open to see your app or http://localhost:3000 to view it in the browser.

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

Build errors

npm test or yarn test

Runs the test watcher in an interactive mode.
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.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.

Your app is ready to be deployed.

User Guide

You can find detailed instructions on using Create React App and many tips in its documentation.

How to Update to New Versions?

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

Philosophy

  • One Dependency: There is only one build dependency. It uses webpack, Babel, ESLint, and other amazing projects, but provides a cohesive curated experience on top of them.

  • No Configuration Required: You don't need to configure anything. A reasonably good configuration of both development and production builds is handled for you so you can focus on writing code.

  • No Lock-In: You can “eject” to a custom setup at any time. Run a single command, and all the configuration and build dependencies will be moved directly into your project, so you can pick up right where you left off.

What’s Included?

Your environment will have everything you need to build a modern single-page NW.js React app:

  • NW.js, React, JSX, ES6, TypeScript and Flow syntax support.
  • Language extras beyond ES6 like the object spread operator.
  • Autoprefixed CSS, so you don’t need -webkit- or other prefixes.
  • A fast interactive unit test runner with built-in support for coverage reporting.
  • A live development server that warns about common mistakes.
  • A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps.
  • An offline-first service worker and a web app manifest, meeting all the Progressive Web App criteria. (Note: Using the service worker is opt-in as of [email protected] and higher)
  • Hassle-free updates for the above tools with a single dependency.

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.

Contributing

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

License

Create NW.js React App is open source software licensed as MIT.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].