This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

blackbaud.js

1.2.1 • Public • Published

blackbaud.js


Node.js package to interact with Blackbaud's learning management system (LMS)



NPM Version NPM Downloads Dependencies


NPM Install Info

Example

const { Client } = require("blackbaud.js");

const client = new Client({
  url: "example.myschoolapp.com",
  svcToken: "ExampleSVCToken", // This can be fetched by looking for the "AuthSvcToken" cookie under "myschoolapp.com" in your browser.
  /* username: "john.doe",
  password: "JohnDoePassword123",*/ // Alternatively, you can provide credentials if the LMS does not use BBID.
});
let UserManager = new client.UserManager(client);

client.on("ready", async function (client) {
  console.log(
    `[Blackbaud] Client logged in and ready as "${client.user.username}"`
  );

  await UserManager.getStatus().then((data) => {
    console.log(data.partial.unreadMessageCount); // Returns the number of unread messages for the current user.
  });
});

Package Sidebar

Install

npm i blackbaud.js

Weekly Downloads

0

Version

1.2.1

License

MIT

Unpacked Size

24.7 kB

Total Files

22

Last publish

Collaborators

  • milanmdev