Node.JS-client for Nasjonal Turbase.
- Node.JS >= v0.10
- io.js >= v1.0.0
npm install turbasen --save
var turbasen = require('turbasen');
Data Type | API object |
---|---|
Areas | turbasen.områder.… |
Photos | turbasen.bilder.… |
Places | turbasen.steder.… |
Trips | turbasen.turer.… |
Activities | turbasen.aktiviteter.… |
Groups | turbasen.grupper.… |
Code | Explanation |
---|---|
200 |
Everything is OK |
201 |
Object created |
204 |
As 200 without any body |
400 |
Body is missing |
400 |
ObjectId is invalid |
401 |
Credentials are invalid |
403 |
Rate limit is exceeded |
403 |
Request was denied |
404 |
Resource was not found |
404 |
Object was not found |
405 |
HTTP method X is not allowed |
422 |
Body should be a JSON Hash |
422 |
Data validation failed |
500 |
Internal server error |
The following configurations are read from environment variables when this module is loaded:
NTB_API_KEY
- API key for authenticate requestsNTB_API_ENV
- API environment (defaultapi
, can bedev
)NTB_USER_AGENT
- User Agent for API requests
These configurations can be overloaded using the turbasen.configure()
like
this:
turbasen.configure({
API_KEY: 'my-api-key',
API_ENV: 'dev',
USER_AGENT: 'my-app/1.2.3'
});
turbasen.områder(query, function(err, res, body) {
if (err) { throw err; }
console.log(body.count);
console.log(body.documents);
});
turbasen.bilder.post(object, function(err, res, body) {
if (err) { throw err; }
if (res.statusCode !== 201) {
console.error(body.message);
console.error(body.errors);
} else {
console.log(body);
}
});
turbasen.bilder.get(id, function(err, res, body) {
if (err) { throw err; }
if (res.statusCode !== 200) {
console.error(body.message);
} else {
console.log(body);
}
});
turbasen.bilder.put(id, object, function(err, res, body) {
if (err) { throw err; }
if (res.statusCode !== 200) {
console.log(body.errors);
} else {
console.warn(body.warnings);
console.log(body.document);
}
});
turbasen.bilder.patch(id, object, function(err, res, body) {
if (err) { throw err; }
if (res.statusCode !== 200) {
console.log(body.errors);
} else {
console.warn(body.warnings);
console.log(body.document);
}
});