An open API service indexing awesome lists of open source software.

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.

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)