Skip to content

Currency exchange rates API based on NodeJS & SailsJS

License

Notifications You must be signed in to change notification settings

mvandrew/currency-api

Repository files navigation

Currency-API - exchange rates API

Dependencies Status devDependencies Status License: MIT

Currency exchange rates API based on NodeJS & SailsJS framework.

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

Проблемы и Ошибки

Решение: 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.