assembler.coffee | |
|---|---|
| dormousejs is a javascript library to help access the dormouse crowdsourcing platform's API. It is compatible with the node.js engine, and can be installed in one line
It can also be used in modern browsers by including the bundled
file found in | |
Features
| |
First steps
| |
And now for code | |
| Requirements | require './mixin'
Connection = require('./connection').Connection
Tasks = require('./tasks').Tasks
Projects = require('./projects').Projects |
| This is accessed through To see what other methods are available on the | class Dormouse |
| Tasks, Projects are mixins | @implements Tasks, Projects |
| get or set the | @server: () ->
Connection.server.apply Connection, arguments |
| get or set the | @api_key: () ->
Connection.api_key.apply Connection, arguments
module.exports = Dormouse
|