cra-template-timmybytes-template
v1.1.1
Published
My personal custom template for create-react-app.
Downloads
4
Maintainers
Readme
About
This is a custom template for create-react-app that removes much of the typically unneeded boilerplate, and adds a SPLATE directory tree for styling with Sass.
This template removes the following:
README
boilerplate textpublic/favicon.ico
public/logo192.png
public/logo512.png
public/robots.txt
public/manifest.json
public/index.html
boilerplate and extraneous linkssrc/App.css
src/App.js
src/App.test.js
src/index.css
src/logo.svg
src/logo.serviceWorker.js
src/logo.setupTests.js
src/index.js
boilerplate and extraneous imports
This template adds the following:
src/index.js
parent element set to Fragmentsrc/components
directory, with defaultApp.jsx
and ES6 syntaxSass directory tree based on SPLATE:
src/scss ├── components │ ├── _buttons.scss │ ├── _links.scss │ ├── _media.scss │ └── _menu.scss ├── config │ ├── _resets.scss │ └── _shame.scss ├── imported │ └── _vendor-resets.scss ├── layout │ ├── _footer.scss │ ├── _grid.scss │ ├── _header.scss │ ├── _layout.scss │ └── _navbar.scss ├── main.scss ├── meta │ ├── _functions.scss │ ├── _mixins.scss │ └── _variables.scss ├── pages │ ├── _about.scss │ ├── _contact.scss │ └── _home.scss └── theme ├── _colors.scss ├── _sizing.scss └── _typography.scss
src/main.css
generated from SCSS
Installation
To set up a new React project with this template, use create-react-app
with the specified template.
npx create-react-app [name-of-your-app] --template timmybytes-template
Note: I use this template with VS Code and the Live SASS Compiler extension, and use a few simple local settings in .vscode/
as a result. If you're planning to use a different editor or to compile your SASS another way, you can delete the .vscode/
directory and/or uncomment it in .gitignore
.
License
This project is licensed under an MIT License.
Further Reading
When creating custom create-react-app
templates, the following are required for the base structure:
cra-template-[template-name]/
README.md (for npm)
template.json
package.json
template/
README.md (for projects created from this template)
gitignore
public/
index.html
src/
index.js (or index.tsx)
To learn more about custom templates, read the documentation.