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

liqen

v0.5.4

Published

JS Client for Liqen Core API

Downloads

42

Readme

JS Client for Liqen Core API

This is the official JavaScript API Client for Liqen Core.

Install using yarn or npm.

yarn add liqen
npm install liqen --save

Create a Client instance

The module exposes only one function (and error codes). Call it providing an access token. Leave it blank to connect as annonymous person.

import liqen from 'liqen'

const client = liqen('MY-ACCESS-TOKEN')

You will get a client object with all the methods ready to use.

The package exports the function as a ES6 default export. If you use CommonJS, make sure to require the default:

const liqen = require('liqen').default

const client = liqen('MY-ACCESS-TOKEN')

Using the client

Once you have created the Client instance, use it to make actual calls to the Liqen API. For example to retrieve the annotation 3:

client.annotations.show(3);

It will return a promise that fulfilled with the annotation.

Naming convention

All the methods in the client has the following convention: client.RESOURCE_NAME.METHOD_NAME, where RESOURCE_NAME is the name of a resource, for example, annotations or articles. Every METHOD_NAME is paired with a HTTP request:

  • client.resource.index() is equivalent to GET /resource
  • client.resource.show(id) is equivalent to GET /resource/:id
  • client.resource.create() is equivalent to POST /resource/
  • client.resource.update(id) is equivalent to PUT /resource/:id
  • client.resource.delete(id) is equivalent to DELETE /resource/:id

Optional parameters

The methods index and show accepts one optional parameter (type object) which are converted to HTTP query params. For example:

  • client.annotations.index({article_id: 3}) is equivalent to GET /annotations?article_id=3 for getting all the annotations refering to a single article

The methods create and update accepts one parameter (type object) which will be converted into a JSON object and sent in the request as a body.

For example, you can create an annotation this way:

client.annotations.create({
    article_id: 3,
    target: {
        type: 'FragmentSelector',
        value: 'id1'
    },
    tags: [1]
})

Contribute

  1. git clone or fork the repo
  2. npm install the dependencies
  3. Write code
  4. npm test the code before submitting it

Examples

You can find examples in the examples directory. To run them, use (replace examples/basicExample.js with the appropiate file:

babel-node --presets env examples/basicExample.js