Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chuyeow/node-myanimelist-api
Unofficial API for the MyAnimeList.net website. http://mal-api.com
https://github.com/chuyeow/node-myanimelist-api
Last synced: about 1 month ago
JSON representation
Unofficial API for the MyAnimeList.net website. http://mal-api.com
- Host: GitHub
- URL: https://github.com/chuyeow/node-myanimelist-api
- Owner: chuyeow
- Created: 2013-10-18T13:16:44.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-21T07:00:12.000Z (over 11 years ago)
- Last Synced: 2024-11-07T20:16:15.626Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 137 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MyAnimeList Unofficial API
An unofficial API for the awesome http://myanimelist.net/.
## Setting up for development
1. You'll need at least node 0.11.4 or higher for generator support.
1. Install node.js dependencies: `npm install`
1. If you're using a `NODE_ENV` other than `production`, `development`, or `test`, make a copy of `config/config.env.json.example` and name it `config/config.ENV_NAME.json` (where `ENV_NAME` is your environment name).
1. You'll probably want to use something like [nodemon](https://github.com/remy/nodemon) or [node-supervisor](https://github.com/isaacs/node-supervisor) to watch for changed files and restart the node server, e.g. `nodemon --exec node --harmony-generators app.js --ext js,json`
1. (Optional) You might want to use Grunt to run tests: `npm install -g grunt-cli`, then `grunt watch`.