https://github.com/agilgur5/front-end-base
My base boilerplate for starting a front-end app
https://github.com/agilgur5/front-end-base
Last synced: 3 months ago
JSON representation
My base boilerplate for starting a front-end app
- Host: GitHub
- URL: https://github.com/agilgur5/front-end-base
- Owner: agilgur5
- License: other
- Created: 2018-05-29T03:42:15.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2022-11-21T01:09:08.000Z (over 2 years ago)
- Last Synced: 2025-01-18T23:32:19.321Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 335 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Front End Base
Base boilerplate (ish) files from which to start a front-end app.
Cobbled together from various jobs and side projects to get something that is at least an optimal starting point for most projects and uses my preferred libraries.Currently, this is mostly config for Git, NPM, Webpack, Babel, PostCSS, and Browserslist.
It also includes some starter files like polyfills.## Table of Contents
I. [Front End Development](#front-end-development)
II. [Further Reading](#further-reading)## Front End Development
### Installing
```bash
npm install
```### Using the Environment
See the [`maidfile`](maidfile.md) for a list of tasks available
### Installing New Packages
1. `npm i -D ` will install and save a package as a dev dependency
- `npm i -S ` will install and save a package as a prod dependency
1. `import` the package where needed in the code## Further Reading
1. [Webpack Docs](https://webpack.js.org/)
1. [NPM docs](https://docs.npmjs.com/)