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

khan

v0.1.8

Published

Khan Academy API wrapper

Downloads

35

Readme

khan

Khan academy API wrapper

Installation

npm install khan

Usage

This package exports a single, autocurried function. This function takes up to 4 parameters:

  • consumerKey - provided by Khan when you register your application
  • consumerSecret - provided by Khan when you register your application
  • tokenSecret (optional) - obtained when the user authorizes your application
  • accessToken (optional) - obtained when the user authorizes your application

All of these are optional. If you don't call the function, it is simply a map of unauthenticated requests you may make. Because it is autocurried, you may continue calling it indefinitely with more parameters. E.g. khan(consumerKey)(consumerSecret) is equivalent to khan(consumerKey, consumerSecret), so you can nicely make partially applied versions of the wrapper for different contexts. This pattern in particular is useful:

var khan = require('khan')(consumerKey, consumerSecret)

function getExercises (user, exerciseName) {
  var userKhan = khan(user.khan.oauth_token_secret, user.khan.oauth_token)
  return userKhan.userExercise(exerciseName)
}

Methods

These methods are properties on khan (or any curried instance of khan). Unless otherwise specified, they all return promises:

  • request(apiPath)

    • this is a special method that allows you to request any arbitrary path of the khan api. If you call request(/somepath), it will send a (signed if authenticated) request to https://www.khanacademy.org/api/v1/api/v1/somepath.
  • badges()

  • badgeCategories()

  • badgeCategoryRange(category)

  • exercise(exerciseName)

  • exerciseFollowups(exerciseName)

  • exerciseVideos(exerciseName)

  • playlistVideos(pathTopicSlug)

  • playlistExercises(pathTopicSlug)

  • topic(topicSlug)

  • topicExercises(topicSlug)

  • topicVideos(topicSlug)

  • user() (auth required)

  • userExercies() (auth required)

  • userExercise(exerciseName) (auth required)

  • userExerciseFollowups(exerciseName) (auth required)

  • userExerciseLog(exerciseName) (auth required)

  • userProgressChanges()(auth required)

  • userPlaylists() (auth required)

  • userVideos() (auth required)

  • userVideo(videoId) (auth required)

  • userVideoLog() (auth required)

  • students() (auth required)

  • video(videoId)

  • videoExercises(videoId)

requestToken

Params:

  • redirectUri (optional) - Where the user should get redirected after they authorize

Example - Getting a request token

var khan = require('khan')(consumerKey, consumerSecret)

khan
  .requestToken()
  .then(function (res) {
    // res = {oauth_token, oauth_token_secret}
    // where 'oauth_token' is your request token
    // you now need to have the user authorize it
    // from their browser
  })

accessToken

Retrieve an access token.

Params:

  • requestToken - The request token you received in the previous request
  • verifier - The oauth verifier returned by the authorize step
  • tokenSecret - the token secret you received in te previous request

Example - Getting an access token

var khan = require('khan')(consumerKey, consumerSecret)

khan
  .accessToken(requestToken, verifier, tokenSecret)
  .then(function (res) {
    // res = {oauth_token, oauth_token_secret}
    // where, in this case, oauth_token is your access token
    // which you may now use to make authenticated requests
  })

exercise

Retrieve public data about a particular exercise.

Params:

  • exerciseName - Exercise name

Example - Retrieving data about an exercise

This is a completely public request, so it doesn't require any auth parameters:

var khan = require('khan')

function getExercise(name) {
  return khan.exercise(name)
}

userExercise

Retrieve a user's state on a particular exercise.

Params:

  • exerciseName - Exercise name
  • userId (optional) - User id. If not passed, retrieves data for the currently authenticated user.

Example - Getting exercise data for a particular user

var khan = require('khan')(consumerKey, consumerSecret)

function getUserExercise (user, exerciseName) {
  khan(user.oauth_token, user.oauth_token_secret)
    .getUserExercise(exerciseName)
    .then(function (exercise) {
      // Do some stuff
    })
}