This Starter Kit is being created for New Web Developers that want to get started with react
Most people use a CLI Tool like Vue-Cli or Create React App and no idea what these things are doing
The goal of this is for it to be a tool that let's you learn JS at a new level because you have access to everything under the hood and no opinionated set up
I will base all my tutorials on this Starter Kit.
I am Arthur Bernier Jr. I work as freelance fullstack web developer and attraction marketing consultant specializing in supporting e-commerce brands, subscription box sites, social activists, religious/non-profit leaders and creative entrepreneurs(i.e. barbers, artists, musicians, stylists, models and photographers). I have a passion for helping entrepreneurs reach their perfect audience and helping you communicate to that audience in a way that makes them know, like and trust you. I also am a Part-Time Instructor at General Assembly, a Senior Director at a National Non-Profit, a Multi Time Start-Up Founder who has raised 7 figures in VC, Creator and Maintainer of MambaScript, and Multi Time Tech Lead at startups from Seed Stage to Billion Dollar Valuation.
Start the dev server
npm run dev
yarn dev
Build files for production
yarn build
npm run build
Deploy for production script
npm start
yarn start
This starter kit uses Gulp, Webpack, Browsersync, Nodemon and Babel to create a unified development environment with hot reloading and automatically building files to disk. It uses the concept of Train How You Fight, Fight Like You Train
. Instead of building files in memory in dev mode, this starter kit builds your files directly to the public folder and statically serves the public folder. This means that the public folder is serving your site just like it would in production and this meant to be a simple full stack react starter kit that any learner can build upon.