Skip to content

Instantly share code, notes, and snippets.

View evanslaton's full-sized avatar

Evan Slaton evanslaton

View GitHub Profile

const express = require('express'); const superagent = require('superagent');

const app = express(); const PORT = 3000;

app.get('/', greeting); app.get('/team', getTeam); app.get('/recipes', searchRecipe)

XSightings User Stories

User

  • As a user, I want to be able to sign up / login so that other users can see which sightings I've documented. (2 developers / 8 developer hours)
  • As a user, I want to be able to document my sightings (title, time, location and description) so that other users and I can view my sightings at a later time. (1 developer / 2 developer hours)
  • As a user, I want to view a list of sightings so that I can quickly see when and where there have been sightings. (1 developer / 4 developer hours)
  • As a user, I want to be able to view individual sightings (title, time, location, creator and description) so that I can investigate the sighting further. (1 developer / 2 developer hours)

Developer

  • As a developer, I want XSightings to be easy to use so that users continue to use XSightings.
  • As a developer, I want XSightings navigation to be easy to use that users are quickly able to move throughout the app.