https://github.com/balasasidhar/html-boilerplate
Webpack setup for a basic multi page HTML5 Static Website.
https://github.com/balasasidhar/html-boilerplate
Last synced: 7 months ago
JSON representation
Webpack setup for a basic multi page HTML5 Static Website.
- Host: GitHub
- URL: https://github.com/balasasidhar/html-boilerplate
- Owner: balasasidhar
- License: mit
- Created: 2021-03-10T11:54:24.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-10T13:36:28.000Z (over 4 years ago)
- Last Synced: 2025-01-25T21:27:44.460Z (8 months ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTML Boilerplate
### A quick start template with for Basic Multipage Website.
`HTML5, SCSS/SASS, Bootstrap4, jQuery, Babel-7 and Webpack-5`
> Make sure that you've installed [NodeJS](https://nodejs.org/en/) 10.x or higher and NPM version 6.x or higher.
- ### Development
- Clone the repo
```
$ git clone https://github.com/balasasidhar/html-boilerplate.git
```- Navigate to root directory
```
$ cd html-boilerplate
```- Install dependecies using yarn or npm
```
$ yarn install
```or
```
$ npm install
```- Start development server
```
$ yarn start
```or
```
$ npm start
```or
```
$ npm run test
```- ### Production Build
- Build
```
$ yarn run build
```
or
```
$ npm run build
```
- Start production server
```
$ yarn run serve
```
or
```
$ npm run serve
```### Libraries and Official Docs
- Styles
- [Bootstrap v4](https://getbootstrap.com/)
- [SASS/SCSS](https://sass-lang.com/)- Helper Libraries
- [Axios](https://github.com/axios/axios)
- [Lodash](https://lodash.com/)- Build Tools
- [Webpack v5](https://webpack.js.org/)
- [Babel v7](https://babeljs.io/)- Lint and Validators
- [ESLint](https://eslint.org/)
- [Style Lint](https://stylelint.io/)
- [Prettier](https://prettier.io/)
- [Husky](https://github.com/typicode/husky)
- [Lint Staged](https://github.com/okonet/lint-staged)