A REST API using Node + Express which I use with some of my applications.
Gets the list of Avengers.
Gets the Avenger on index from the list.
{
"avenger":{"id":1,"name":"Robert","avengername":"Mark IV"},
"index":0
}
Deletes the Avenger on index from the list .
{
"avenger":{"id":null,"name":"Doge","avengername":"such wow"}
}
Resets the Avengers List with the original list.
https://avengers-api.herokuapp.com/
The list works only on one copy. So multiple connections will not have its own copy of the list. In short, sessions are not used.
MIT