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

https://github.com/blockstarter/rate-server

Blockstarter's rate server to store and provide historical rates
https://github.com/blockstarter/rate-server

Last synced: about 1 year ago
JSON representation

Blockstarter's rate server to store and provide historical rates

Awesome Lists containing this project

README

          

# Blockstarter's Rates Server

### Setup

```
npm i livescript forever -g
npm i
```

### Start for debug

```
lsc server
```

### Start forever

```
lsc -c server.ls
forever start server.js
```

### Usage

```
GET \/get-closest/:date
```

```
POST \/insert
{
date: new Date(),
rates: { ... }
}
```