Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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`.