https://github.com/dimpu/browserify-angualr2-quickstart
Angular2 quickstart application using browserify,tsify,budo
https://github.com/dimpu/browserify-angualr2-quickstart
Last synced: 6 months ago
JSON representation
Angular2 quickstart application using browserify,tsify,budo
- Host: GitHub
- URL: https://github.com/dimpu/browserify-angualr2-quickstart
- Owner: dimpu
- Created: 2016-06-23T07:37:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-13T03:59:32.000Z (about 9 years ago)
- Last Synced: 2025-04-11T23:36:59.828Z (9 months ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Browserify Angualr2 Quickstart App
Angular 2 Quick start Application.
Start building your angualr2 application with ease.
## How to do it?
```shell
git clone https://github.com/dimpu/browserify-angualr2-quickstart.git my-app
cd my-app
npm i
```
##Run application
```shell
npm start
```
##Build application
```shell
npm run build
```
##Minify application
To get minified javascript
```shell
npm run minify
```
You application code will be at /src direcotory.
#LICENSE
The MIT License (MIT)
Copyright (c) 2016 Aravind Buddha
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.