├── .env.sample ├── .gitignore ├── ReadMe.md ├── app.js ├── dynamo.js ├── package.json └── seed.js /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesqquick/harry-potter-api-with-dynamo-db-node-express/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | # Harry Potter API with Dynamo DB, Nodejs, and Expressjs -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesqquick/harry-potter-api-with-dynamo-db-node-express/HEAD/app.js -------------------------------------------------------------------------------- /dynamo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesqquick/harry-potter-api-with-dynamo-db-node-express/HEAD/dynamo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesqquick/harry-potter-api-with-dynamo-db-node-express/HEAD/package.json -------------------------------------------------------------------------------- /seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesqquick/harry-potter-api-with-dynamo-db-node-express/HEAD/seed.js --------------------------------------------------------------------------------