https://github.com/ruthmoog/makers_notes-app-js
https://github.com/ruthmoog/makers_notes-app-js
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruthmoog/makers_notes-app-js
- Owner: ruthmoog
- Created: 2019-07-09T13:13:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-10T17:34:18.000Z (almost 6 years ago)
- Last Synced: 2025-01-26T05:44:44.030Z (4 months ago)
- Language: JavaScript
- Size: 662 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes app
This project is going to be a front-end simple page web app built only with JavaScript.
The test _framework_ is written in JS, and app functionality had been built with TDD.### Approach
The app is built around three given user stories and a series of challenges. Code has been written through pair programming.
## User Stories
```
As a programmer
I can see a list of my notes, where each note is abbreviated to the first 20 characters
So I can find the one I want
``````
As a programmer
I can create a new note
So I can record something I need to remember
``````
As a programmer
I can see the full text of an individual note on its own page
So I can see all the information in the note
```(NB: notes do not need to be permanently stored. If the user refreshes their web page, they'll lose their notes, and that's fine.)
## App Diagram
## Running the App
Run for the command line with node & npm installed, from the project root:
```shell
$ npm install http-server --save
$ node node_modules/http-server/bin/http-server
```