Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicojs/angular2-music-browser
An music browser written with angular2 alpha
https://github.com/nicojs/angular2-music-browser
Last synced: 29 days ago
JSON representation
An music browser written with angular2 alpha
- Host: GitHub
- URL: https://github.com/nicojs/angular2-music-browser
- Owner: nicojs
- Created: 2015-06-04T19:27:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-26T20:38:19.000Z (over 9 years ago)
- Last Synced: 2024-04-14T06:39:02.066Z (7 months ago)
- Language: JavaScript
- Size: 219 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Angular 2 music browser
=======================
*Using angular 2 with Typescript to call the Spotify api*Getting started
----
Execute the following commands to get started.
```
git clone [email protected]:nicojs/angular2-music-browser.git
cd angular2-music-browser
npm install -g bower live-server tsc
bower install
cd app
tsc -w & live-server
```
I found live-server an excelent tool to have a simple live reload server for development.
The typescript compile command (tsc -w) will start the typescript compiler. It will watch for any file changes (-w). Also, it will use the tsconfig.json file to read the rest of the config.See me in action
-----
[![Explanation on youtube](youtube.png "Logo Title Text 1")](https://www.youtube.com/watch?v=QYqv0Yrsjq4)What's this about
----
This is an example project to see angular2 in action. As of now, angular2 is still in its alpha stage. So no guarantees. The api WILL change.
I tried to make a 'real' app. With a small form, an api call and some html happiness.Furter readings
----
I found these resources particular useful:
* [Official angular website](http://angular.io)
* [Why will angular 2 rock](http://angular-tips.com/blog/2015/06/why-will-angular-2-rock/)
* [Change detection](http://victorsavkin.com/post/110170125256/change-detection-in-angular-2)
* [Zone.js](https://github.com/btford/zone.js/)