My personal web app front-end starter kit.
Start developing a modern React app quickly, with minimal configuration.
- React
- Redux
- Emotion
- MUI
- Laravel Mix
- Asset cache busting without using a dynamic scripting language
It's similar to the idea behind create-react-app, but way slimmed down and ready for customization with no eject
process. Just install, and then fire up a local dev server—
npm run hot
You did it. Cheers. 🥃
You don't need to check this repo out.
If you don't already have modern node on your machine, grab it with nvm
https://github.com/nvm-sh/nvm
Then create a new project—
# Create and enter a new directory for your project
mkdir my-new-project
cd my-new-project
# Optional: drop your npm cache to make sure you receive latest version
# https://github.com/npm/cli/issues/2329
rm -Rf ~/.npm
# Go
npx github:cblackcom/front
After installation, check out the README.md
in your new project for the last couple of things.