npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@deepvision/adventist-api

v1.2.7

Published

## Installing To install library use:

Downloads

69

Readme

Creator.JS

Installing

To install library use:

npm install @deepvision/creator.js

Initializing

For working using api library import to your script file and create instance with new. Notice, that endpoint argument is required in constructor.

import CreatorApi from '<path_to_library>';

const creatorApi = new CreatorApi({
    endpoint: 'your-enpoint',
    token: 'your-token',
});

Usage

Courses

List Courses

Get list of courses with pagination, sorting and filters

creatorApi.courses.list(params)

params

  • owner - available options: 'self'
  • limit – used to specify the number of items to return
  • offset – the position in the dataset of a particular item
  • sort – sorting fetched list
  • filters –

Get Course

Get the course by id

creatorApi.courses.withId(id).get()

Create Course

Create new course with specify data

creatorApi.courses.create(data)

data

  • title - name of course
  • description - course description
  • language - course language

Delete Course

Delete the course by id

creatorApi.courses.withId(id).delete()

Update Course

Update the course by id with specify data

creatorApi.courses.withId(id).update(data)

data

  • title - name of course
  • description - course description
  • language - course language

Authors

List Authors

Get list of authors with pagination, sorting and filters

creatorApi.authors.list(params)

params

  • limit – used to specify the number of items to return
  • offset – the position in the dataset of a particular item
  • sort – sorting fetched list
  • filters –

Get Author

Get the author by id

creatorApi.authors.withId(id).get()

Create Author

Create new author with specify data

creatorApi.authors.create(data)

data

  • firstName - first name of the author
  • lastName - last name of the author
  • photo - avatar of the author

Delete Author

Delete the author by id

creatorApi.authors.withId(id).delete()

Update Author

Update the course by id with specify data

creatorApi.authors.withId(id).update(data)

Lessons

List Lessons

Get list of lessons with pagination, sorting and filters

creatorApi.lessons.list(params, { courseId })

params

  • limit – used to specify the number of items to return

  • offset – the position in the dataset of a particular item

  • sort – sorting fetched list

  • filters –

  • courseId - id of parent course

Get Lesson

Get the lesson by id

creatorApi.lessons.withId(id).get()

Create Lesson

Create new lesson with specify data

creatorApi.lessons.create(data, { courseId })

data

  • title - title of the lesson

  • courseId - id of parent course

Delete Lesson

Delete the author by id

creatorApi.authors.withId(id).delete()

Update Lesson

Update the lesson by id with specify data

creatorApi.lessons.withId(id).update(data)

data

  • title - title of the lesson

License

This project is licensed under the MIT License