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
- Host: GitHub
- URL: https://github.com/mvandrew/currency-api
- Owner: mvandrew
- License: mit
- Created: 2018-03-07T11:37:36.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-13T23:19:43.000Z (almost 8 years ago)
- Last Synced: 2025-02-08T14:45:10.032Z (11 months ago)
- Topics: currency-api, currency-exchange, currency-exchange-rates, currency-rates, node, node-js, nodejs, sails, sailsjs
- Language: JavaScript
- Size: 468 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Currency-API - exchange rates API
[](https://david-dm.org/mvandrew/currency-api) [](https://david-dm.org/mvandrew/currency-api?type=dev) [](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```.