Skip to content

AndrewJBateman/angular-frontend-notes

Repository files navigation

Angular Frontend Notes

  • Angular tutorial app to allow user to add notes to a notes list. Notes can be viewed and deleted from this list. Includes a filter so user can search for key words and filtered results will order themselves in terms of relevancy.

  • Clicking on a note navigates to that note where the note can be edited.

  • All code by Devstackr from Youtube [tutorial series](Project Demo & Introduction - [1] Build a Notes App w/ Angular).

Table of contents

General info

  • 5 part Youtube tutorial series in Angular 8. Upgraded to Angular 9.

Screenshots

Angular page

Technologies

Setup

  • To start the server on localhost://4200 type: 'ng serve'

Code Examples

  • on initialisation of note-details.component.ts check if note is new
ngOnInit() { // new note or editing existing one? this.route.params.subscribe((params: Params) => { this.note = new Note(); if (params.id) { this.note = this.notesService.get(params.id); this.noteId = params.id; this.new = false; } else { this.new = true; } }) }

Features

  • Bulma CSS styles used for the first time.

Status & To-do list

  • Status: Video 5 of 5 completed.

  • To-do: Nothing. Could add local storage or a backend (e.g. google Firebase).

Inspiration

Contact

Repo created by ABateman - feel free to contact me!

About

📋 Angular tutorial app to allow user to enter notes and to list these notes in cards.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published