1.0.11 • Published 8 months ago

moodle-node v1.0.11

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 months ago

moodle-node

Manage Moodle from NodeJS

Installation

npm install moodle-node

Usage

const moodle = require('moodle-node');

const user = await moodle.user.createUser({
  username: 'joeblow',
  password: 'Pass1234!',
  email: 'joeblow@nowhere.com',
  firstname: 'Joe',
  lastname: 'Blow',
});
console.log(user);

Output

The output is a JSON object or array based on the function called:

[ 
  { 
    "id": 7, 
    "username": "joeblow" 
  } 
]

Contact Information

If you ever need a hand or have any questions, feel free to reach out.

Fred Lackey
https://fredlackey.com
fred.lackey@gmail.com

1.0.11

8 months ago

1.0.10

9 months ago

1.0.9

9 months ago

1.0.8

9 months ago

1.0.7

9 months ago

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago