Skip to content

A promise-based universal API for tracking users. It connects to an AWS API-Gateway with DynamoDB, and is available as a dependency on npm.

Notifications You must be signed in to change notification settings

toddmerrill/users-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

users-api

AWS User API

I threw this API together to have a simple, Promise-based library for sample applications that would run in Node or a browser. The backend is an AWS API-Gateway connected to DynamoDB. The access key limits the number of transactions per month, so it's only for playing around with ;)

Functions:

retrieveUsers()
saveUser(user)
deleteUser(user)

User object structure:

{
    userId,      // string
    firstName,   // string
    lastName,    // string
    age          // number
}

Installation:

npm install

Test suite:

npm test

About

A promise-based universal API for tracking users. It connects to an AWS API-Gateway with DynamoDB, and is available as a dependency on npm.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published