Template for blank projects, for quick coding starts.
- Webpack 5
- SCSS
- TypeScript
- React
- Click "USE THIS TEMPLATE" and generate your new project.
- Clone down that new repo, or whatever you wanna do to get the code.
- Install dependencies
npm i
To run the localhost development server:
npm start
To bundle everything for production, run:
npm run build
SCSS will be converted to CSS, TSX will be converted to JS, images will be collected into /build/assets/images... all good things will be bundled and ready to rock!
Special thanks to freeCodeCamp and Colt Steele for producing a wonderful Webpack for Beginners course. Learnings from that course have been applied here to make this project possible.
Inspiration for BeckyBot from Mark Wilkins. Thank you for providing us at Arson Team with excellent code to learn from!
Thanks to Evert Pot for teaching me React and TypeScript!