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

https://github.com/mvandrew/currency-api

Currency exchange rates API based on NodeJS & SailsJS
https://github.com/mvandrew/currency-api

currency-api currency-exchange currency-exchange-rates currency-rates node node-js nodejs sails sailsjs

Last synced: 10 months ago
JSON representation

Currency exchange rates API based on NodeJS & SailsJS

Awesome Lists containing this project

README

          

# Currency-API - exchange rates API
[![Dependencies Status](https://david-dm.org/mvandrew/currency-api.svg)](https://david-dm.org/mvandrew/currency-api) [![devDependencies Status](https://david-dm.org/mvandrew/currency-api/dev-status.svg)](https://david-dm.org/mvandrew/currency-api?type=dev) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Currency exchange rates API based on [NodeJS](https://nodejs.org) & [SailsJS framework](http://sailsjs.org).

## Documentation
The project provides two types of documentation: API and App Structure.

Both types of documentation are generated automatically by Grunt tasks.

### See docs annotations
* [APIDOC - Documentation for RESTful web APIs](http://apidocjs.com/)
* [JSDoc](http://usejsdoc.org/)

## Проблемы и Ошибки
### Решение: ENOENT: no such file or directory

При развертывании приложения и установке зависимостей (npm install) может возникнуть ошибка:

```
ENOENT: no such file or directory
```

Решается проблема следующим образом:
1. Временно очистить секции dependencies и devDependencies.
2. Выполнить команду: ```npm install```.
3. Восстановить секции dependencies и devDependencies.
4. Снова выполнить команду: ```npm install```.

В результате все зависимости должны установится.

Кроме этого, может потребоваться очистить кэш: ```npm cache clear --force```; и установить npm ```npm install -g npm```.