An open API service indexing awesome lists of open source software.

https://github.com/hodonsky/node-soa-example

SOA Working example NodeJS
https://github.com/hodonsky/node-soa-example

docker docker-compose dynamodb nodejs rabbitmq soa vagrant

Last synced: 3 months ago
JSON representation

SOA Working example NodeJS

Awesome Lists containing this project

README

          

## Install Virtualbox and Vagrant

#### `$ vagrant up`

That should be enough for you to start poking around.

Want to see it work?

Try sending some raw JSON to: `localhost:8800/auth`

```JSON
{
"username":"donsky@email.mail",
"password":"Abcd1234"
}
```

You should get a response:
```javascript
{
"token": /[A-Za-z0-9]+\.[A-Za-z0-9]+\.[A-Za-z0-9]+/
}
```