All Projects → okwolf → create-hyperapp

okwolf / create-hyperapp

Licence: MIT License
Create Hyperapps with no build configuration

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to create-hyperapp

hyperapp-scripts
Hyperapp expansion pack for create-react-app
Stars: ✭ 38 (+137.5%)
Mutual labels:  create-react-app, zero-configuration, hyperapp
kkt
Create React apps with no build configuration, Cli tool for creating react apps.
Stars: ✭ 40 (+150%)
Mutual labels:  create-react-app, zero-configuration
universal-scripts
Build universal apps without configuration.
Stars: ✭ 23 (+43.75%)
Mutual labels:  create-react-app, zero-configuration
rocketact
🚀Developing React projects with ease
Stars: ✭ 45 (+181.25%)
Mutual labels:  create-react-app, zero-configuration
react-shopping-cart-demo
Notes and the code for the React.js crash course by Mosh Hamedani.
Stars: ✭ 86 (+437.5%)
Mutual labels:  create-react-app
hyperapp-boilerplate
Boilerplate for developing a static web app using Hyperapp built with Parcel
Stars: ✭ 17 (+6.25%)
Mutual labels:  hyperapp
linkedin-clone-react-frontend
🚀 Frontend for a software similar to LinkedIn
Stars: ✭ 48 (+200%)
Mutual labels:  create-react-app
netmaker
Netmaker makes networks with WireGuard. Netmaker automates fast, secure, and distributed virtual networks.
Stars: ✭ 4,147 (+25818.75%)
Mutual labels:  zero-configuration
react-firebase-t3chfest
T3chFest 2017 Workshop about React + Firebase
Stars: ✭ 42 (+162.5%)
Mutual labels:  create-react-app
create-component-lib
Create a library of React components that can be published to npm
Stars: ✭ 84 (+425%)
Mutual labels:  zero-configuration
opPortfolio
A clean portfolio template made with ReactJS.
Stars: ✭ 29 (+81.25%)
Mutual labels:  create-react-app
templates
Templates for Intility developers.
Stars: ✭ 31 (+93.75%)
Mutual labels:  create-react-app
react-app-rewire-workbox
Customise the service worker for create-react-app apps without ejecting - using Google's Workbox webpack plugins instead of the old sw-precache
Stars: ✭ 44 (+175%)
Mutual labels:  create-react-app
eslint-config-website
GUI for generating ESLint configs
Stars: ✭ 45 (+181.25%)
Mutual labels:  create-react-app
react-gallery-carousel
Mobile-friendly gallery carousel 🎠 with server side rendering, lazy loading, fullscreen, thumbnails, touch, mouse emulation, RTL, keyboard navigation and customisations.
Stars: ✭ 178 (+1012.5%)
Mutual labels:  zero-configuration
truffle-react
⚛️ A boilerplate Truffle Box project with Create React App for rapid Ethereum Dapp development
Stars: ✭ 45 (+181.25%)
Mutual labels:  create-react-app
create-react-app-relay-modern
Create React App + Relay Modern
Stars: ✭ 50 (+212.5%)
Mutual labels:  create-react-app
epee-react-admin
🗡简洁、高效、易扩展的 React 快速开发模板,基于布局设计,纯 Hooks 开发,包含中后台应用常用功能
Stars: ✭ 87 (+443.75%)
Mutual labels:  create-react-app
boss
React+express+sock.io+mongodb build a boss
Stars: ✭ 25 (+56.25%)
Mutual labels:  create-react-app
hyperstart.io
Source code for https://www.hyperstart.io
Stars: ✭ 16 (+0%)
Mutual labels:  hyperapp

Create Hyperapp

Create Hyperapps with no build configuration.

Create Hyperapp works on macOS, Windows, and Linux with Node.js >= 8.

Quick Overview

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

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

Creating an App

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

npx

npx create-hyperapp my-app

(npx comes with npm 5.2+ and higher.)

npm

npm init hyperapp my-app

npm init <initializer> is available in npm 6+

Yarn

yarn create hyperapp my-app

yarn create 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 dependencies:

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

No configuration or complicated folder structures, just 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 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.

npm test or yarn test

Runs the test watcher in an interactive mode. By default only tests related to files changed since the last commit are run.

Read more about testing.

npm run build or yarn build

Builds the app for production to the build folder. It bundles in production mode and optimizes the build for the best performance. The build is minified and the filenames include unique hashes based on the contents. Your app is ready to be deployed.

License

Create Hyperapp is MIT licensed. See LICENSE.

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].