I recently completed a web app and thought I’d share a little bit more information about it. I’ve long been interested in dividend stocks and have used a tool in the past based on an Excel spreadsheet. I’ve turned this into a web app that can be dynamically updated with no need for spreadsheets, macros…
Category: Angular
Angular app using Node, JSON server, NG-Bootstrap, and NgRx
Sourcehttps://github.com/jarodms/angular-nodejs-bootstrap-ngrx[UPDATE 04/09/2020 – The master branch was updated to use the createAction factory; the branch action-class uses classes for creating actions.] Resourceshttps://angular.io/https://ngrx.io/docs Background I had previously built a standalone app that featured a “JSON Server”, NodeJS, and Angular front-end that would store your “ToDo” items in a local db.json file. This was a rather simple…
Example Angular 8 with NgRx and Redux DevTools
This was a fun little example and can be used as a template to get started with other projects using Angular 8, NgRx, and Ionic 4. Here’s what is used: Angular 8 NgRx Store 8.3.0 NgRx Store DevTools 8.3.0 For fun, Ionic 4.7.1 To build and run this example, clone the GitHub repo here: https://github.com/jarodms/ionic4-angular8-ngrx-example…
Update an Ionic4/Angular7 app to use Angular 8
I was working on an Angular 7 with Ionic 4 app and wanted to update to Angular 8. Here’s a set of commands to get this done. npm uninstall typescript npm install typescript@3.4.3 –save-dev npm install @ionic/angular@4.7.0 npm install @ionic/angular-toolkit@2.0.0 -D ng update @angular/cli @angular/core Please follow: 0
Ionic 4 and Angular with PouchDB
Get to the code now: https://github.com/jarodms/ionic4-pouchdb I’ve built a couple of Ionic apps using PouchDB and I must say I love the combination. I originally built a small sample app in GitHub some time ago, but I felt it was definitely time to update it to use Angular 8, Ionic 4, and the latest version…