1.0.0 • Published 8 years ago

zermelo.js v1.0.0

Weekly downloads
3
License
LGPL-3.0
Repository
github
Last release
8 years ago

zermelo.js

Build Status NPM

A Node implementation of the Zermelo API.

Quickstart

npm install zermelo.js

const { createSession, loginBySessionInfo } = require('zermelo.js');
// or with es6 modules:
// import { createSession, loginBySessionInfo } from 'zermelo.js'

// Replace every '<thing>' with your credentials:

// create a session
createSession('<schoolid>', '<authcode>')
	.then(sessionInfo => loginBySessionInfo('<schoolid>', sessionInfo)) // create an Zermelo instance using the created session
	.then(zermelo => zermelo.userInfo()) // get the info of the logged in user
	.then(user => console.log(`Hey ${user.firstName}!`)) // say hi
	.catch(err => console.error('something went wrong:', err)); // something went wrong

Useful links

Before creating issues

  1. Update all your packages with npm update
  2. Be sure you haven't made a typo and your code is correct (check the docs)
  3. Don't create issues which occur in a modified version

Contributing

  • Document your code using jsdoc
  • Respect and follow the current programming style
  • Test your changes with npm test
  • Check your code style with eslint
  • Only commit the src/ and test/ directory

License

LGPLv3

1.0.0

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago