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
- Host: GitHub
- URL: https://github.com/hodonsky/node-soa-example
- Owner: hodonsky
- Created: 2020-07-25T00:10:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-30T19:15:49.000Z (about 1 year ago)
- Last Synced: 2025-05-17T10:09:36.548Z (about 1 year ago)
- Topics: docker, docker-compose, dynamodb, nodejs, rabbitmq, soa, vagrant
- Language: JavaScript
- Homepage: https://github.com/hodonsky/node-soa-example
- Size: 1.9 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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]+/
}
```