Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bob-lee/ng-notes
Our notes app rewritten based on Firebase rather than MEAN stack
https://github.com/bob-lee/ng-notes
angular7 firebase workbox
Last synced: about 2 months ago
JSON representation
Our notes app rewritten based on Firebase rather than MEAN stack
- Host: GitHub
- URL: https://github.com/bob-lee/ng-notes
- Owner: bob-lee
- Created: 2017-05-16T10:04:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T17:40:41.000Z (about 2 years ago)
- Last Synced: 2024-10-30T08:43:32.878Z (3 months ago)
- Topics: angular7, firebase, workbox
- Language: TypeScript
- Homepage: https://ng-notes-abb75.firebaseapp.com
- Size: 21.3 MB
- Stars: 2
- Watchers: 4
- Forks: 2
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Our Notes
This SPA(single-page app) allows to maintain notes by group. Each note can have an optional image from your camera, storage or cloud. ~~This app supports PWA(progressive web app) using `@angular/service-worker` so you will enjoy native app-like look and feel, offline capability, better performance.~~
The project was built and deployed using following technologies:
* [Angular](https://angular.io/): frontend framework
* [Angular Firebase](https://github.com/angular/angularfire2): Angular library for Firebase
* [Firebase](https://firebase.google.com/): cloud platform for hosting, authentication, database and storage
* [Workbox](https://workboxjs.org/): JavaScript libraries for Progressive Web AppsVisit [the web](https://ng-notes-abb75.firebaseapp.com/) and play with it! You would need to log in first ~~as anonymous or~~ using your Facebook or Google account.
For development, clone the repo and run `yarn` to install dependencies, then `ng serve`.
```
// to install dependencies
yarn
// to debug on localhost:4200
ng serve
// to run tests
ng test
// to build for production
yarn build
// to test on localhost:5000 with production build
yarn serve
```