https://github.com/ramsingh83/monthcalendar
a month calendar to display enabled/disabled date with surcharge for each day for given date, surcharge and excluded date.
https://github.com/ramsingh83/monthcalendar
angular1-component-style custome-date-range-calendar e2e-testing es5-javascript lighthouse-with-webpack unit-test webpack2
Last synced: 12 months ago
JSON representation
a month calendar to display enabled/disabled date with surcharge for each day for given date, surcharge and excluded date.
- Host: GitHub
- URL: https://github.com/ramsingh83/monthcalendar
- Owner: ramsingh83
- Created: 2018-01-22T10:14:43.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-23T07:33:34.000Z (about 8 years ago)
- Last Synced: 2025-02-12T03:13:06.395Z (about 1 year ago)
- Topics: angular1-component-style, custome-date-range-calendar, e2e-testing, es5-javascript, lighthouse-with-webpack, unit-test, webpack2
- Language: JavaScript
- Homepage:
- Size: 118 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build process for Angular App
This will install among others:
ncp - cross platform copy (ncp [src] [dest])
rimraf - cross platform delete (rimraf [dir|file])
mkdirp - cross platform mkdir (mkdir -p [dir])
...
# How to run
You can edit your files, webpack will keep an eye on changes and refresh automatically as you save, so no need to reload the browser.
# install the dependencies
```
$ npm install
```
# DEV: start the server
```
$ npm start
```
go to [http://localhost:3000](http://localhost:3000) in your browser.
Continue working normally.
If you change your html, you might need to refresh manually, otherwise stop and run 'npm start' again.
# How to test
```
npm run test
```
# How to Build
This lints your files, tests and outputs a minified bundle of all your js/css
A precommit hook will stop the build if lint/test errors occur.
```
npm run build
```