All Projects → ioanungurean → Forge React App

ioanungurean / Forge React App

Licence: mit
Start building React apps using TypeScript or ECMAScript

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Forge React App

Simpacker
Use modern JavaScript build system in Rails.
Stars: ✭ 100 (-3.85%)
Mutual labels:  webpack
Wc Loader
🚽 Webcomponents webpack loader.
Stars: ✭ 101 (-2.88%)
Mutual labels:  webpack
Anvel
Angular 2 Laravel Starter Kit
Stars: ✭ 102 (-1.92%)
Mutual labels:  webpack
React Uport Box
Truffle, Webpack, React, Redux boilerplate with routing and authentication via a UPort.
Stars: ✭ 99 (-4.81%)
Mutual labels:  webpack
Wordless
All the power of Pug, Sass, Coffeescript and WebPack in your WordPress theme. Stop writing themes like it's 1998.
Stars: ✭ 1,374 (+1221.15%)
Mutual labels:  webpack
Fe Blog
前端学习笔记,JavaScript基础,LeetCode,手写API,Vue源码解析,前端面试题
Stars: ✭ 99 (-4.81%)
Mutual labels:  webpack
Nodeppt
This is probably the best web presentation tool so far!
Stars: ✭ 9,589 (+9120.19%)
Mutual labels:  webpack
React Bootstrap Webpack Starter
ReactJS 16.4 + new React Context API +react Router 4 + webpack 4 + babel 7+ hot Reload + Bootstrap 4 + styled-components
Stars: ✭ 103 (-0.96%)
Mutual labels:  webpack
Webpack Bundle Size Analyzer
A tool for finding out what contributes to the size of Webpack bundles
Stars: ✭ 1,376 (+1223.08%)
Mutual labels:  webpack
Koa Mobx React Starter
A straightforward starter for Node javascript web projects. Using Koa, MobX and ReactJS (with universal / isomorphic server rendering)
Stars: ✭ 102 (-1.92%)
Mutual labels:  webpack
Webpack Wordpress
Build Wordpress themes using Webpack and Hot Module Reloading
Stars: ✭ 100 (-3.85%)
Mutual labels:  webpack
Cloudflare Workers Webpack Boilerplate
A superbly simple, minimal-config template for building, bundling and deploying Cloudflare Workers with Webpack 🚀
Stars: ✭ 101 (-2.88%)
Mutual labels:  webpack
Frontie Webpack
Front-end Boilerplate | Gulp 4 + Webpack 4 + Babel + ITCSS Architecture + BEM Methodology + Twig.js
Stars: ✭ 102 (-1.92%)
Mutual labels:  webpack
Jhipster Microservices Example
JHipster Microservices Example using Spring Cloud, Spring Boot, Angular, Docker, and Kubernetes
Stars: ✭ 100 (-3.85%)
Mutual labels:  webpack
Ejs Compiled Loader
EJS loader for webpack (without frontend dependencies)
Stars: ✭ 102 (-1.92%)
Mutual labels:  webpack
Art Template
High performance JavaScript templating engine
Stars: ✭ 9,554 (+9086.54%)
Mutual labels:  webpack
Sambell
wake me when it's quitting time
Stars: ✭ 101 (-2.88%)
Mutual labels:  webpack
Angular Es6
Angular ES6 utility library. Write directives, controllers and services as ES6 classes.
Stars: ✭ 103 (-0.96%)
Mutual labels:  webpack
Webpack Format Messages
Beautiful formatting for Webpack messages; ported from Create React App!
Stars: ✭ 103 (-0.96%)
Mutual labels:  webpack
Angular 7 Webpack 4 Boilerplate
Ready to use Angular 7 project with webpack 4 configuration for development and production
Stars: ✭ 102 (-1.92%)
Mutual labels:  webpack

Forge React App Build Status

Forge React apps with no build configuration. (TypeScript or ECMAScript)

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

Quick Overview

npx forge-react-app my-app
cd my-app
npm start

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

Get Started Immediately

You don’t need to install or configure tools like Webpack or Babel.
They are preconfigured 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 8.10.0 or later 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 forge-react-app my-app

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
│   .babelrc
│   .gitignore
│   package-lock.json
│   package.json
│
├───devtools
│       webpack.common.js
│       webpack.dev.js
│       webpack.prod.js
│       setUpTests.js
│
└───src
    │   App.js
    │   index.html
    │   index.js
    │
    ├───styles
    │       StyledApp.js
    │
    └───__tests__
            App.test.js

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:9000 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.

npm run build or yarn build

Builds the app for production to the dist 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.

Main dependencies

Package Version Details
React ^17.x
TypeScript ^4.x for TypeScript version
Jest ^26.x
React Testing Library ^11.x
Babel ^7.x
Webpack ^5.x

Feedback and suggestions

If you want to leave some suggestions or give me constructive feedback please don't hesitate to file an issue.

License

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