https://github.com/raghavbk/mdb-javascript
MDB + Javascript + Webpack
https://github.com/raghavbk/mdb-javascript
javascript mdbootstrap starter-kit webpack
Last synced: 2 months ago
JSON representation
MDB + Javascript + Webpack
- Host: GitHub
- URL: https://github.com/raghavbk/mdb-javascript
- Owner: raghavbk
- License: bsd-2-clause
- Created: 2019-06-10T12:37:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-31T12:15:18.000Z (almost 2 years ago)
- Last Synced: 2026-04-17T17:39:17.804Z (2 months ago)
- Topics: javascript, mdbootstrap, starter-kit, webpack
- Language: JavaScript
- Size: 339 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/raghavbk/mdb-javascript) [](https://github.com/raghavbk/mdb-javascript) [](https://github.com/raghavbk/mdb-javascript/fork) [](https://img.shields.io/github/license/raghavbk/mdb-javascript.svg)
# Overview
This boilerplate is a set of utilities and plugins for NodeJs to tune and streamline your MDBootstrap (free version) application.
# Installation
First time installation process for Free users:
```bash
npm install
```
##### Start development server
```bash
npm start
```
Runs the project with webpack-dev-server, opens in a new tab on your default browser. Live-reload enabled.
##### Building your project
```bash
npm run build
```
Builds the project to **/dist/**
# Updating
When you want to update the project, it's dependencies and packages, I recommend installing npm-check-updates
```bash
npm i npm-check-updates -g
```
Once installed, run the following commands inside the repository:
```bash
ncu -u
```
If packages are updated, run:
```bash
npm install
```