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

multicolour-javascript-sdk

v0.1.6

Published

generate a JavaScript SDK from your Multicolour models.

Downloads

11

Readme

Multicolour Javascript SDK

Generate your front end JavaScript SDK for use with your Multicolour API.

This generates:

  • ES6 modules/classes to consume and extend in your modern apps.
  • ES5, UMD bundled app to use wherever and whenever.

It features:

  • Fetch promise interface (does not come with the Polyfill you should conditionally load this)
  • Client side validation that matches server side validation.
  • Customisable namespace/module name.
  • A natural API, I.E API.person.get and API.person.create, etc.
  • Content negotiation so you can choose how, what & when to consume your data.

Browser support:

Latest on all browsers (more testing coming soon)

Getting started

Same as any other Multicolour plugin, simply use

your_service.use(require("multicolour-javascript-sdk"))

Then client side you can import your api.bundle.js or individual models and run your API, e.g

// ES5
const API = require("./api.bundle")
API.person
  .create({ name: "Get Multicolour SDK generator" })
  .then(function(response) { return response.json() })
  .then(function(person) { console.log(person) })
  .catch(my_error_handler)

// ES6
import person_API from "./api/schemas/person"

person_API
  .create({ name: "Get Multicolour SDK generator" })
  .then(response => response.json())
  .then(person => console.log(person))
  .catch(my_error_handler)

Configuration

There are a few settings you can change via your Multicolour config.js:

settings: {
  ...
  javascript_sdk: {
    // Where to write the SDK to.
    destination: `${__dirname}/content/frontend/build/api_sdk`,

    // The module name that is exported to in ES5. Requires es5: true
    module_name: "API_SDK",

    // Bundle the API into an ES5 UMD module.
    es5: true
  }
  ...
}

Operations

All models have the same interface at the moment, all have the following methods.

All models extend the API class which gives direct access to all internals if you prefer.

API.negotiate(String accept)

Set the Accept header for all future requests.

API.{schema}.get(Object search)

Get records from the API that match the optional search parameters.

Aliases
API.{schema}.read({search})
API.{schema}.search({search})

API.{schema}.create(Object payload)

Create a new record in the database.

Aliases
API.{schema}.new({search})
API.{schema}.post({search})

API.{schema}.update(Object search, Object payload)

Update records in the database by search with payload

Aliases

API.{schema}.patch(search, payload)


API.{schema}.update_or_create(Object search, Object payload)

Update or create records in the database by search with payload

Aliases

API.{schema}.put(search, payload)


API.{schema}.delete(Object search)

Delete records in the database by search.

Aliases

API.{schema}.remove(search, payload)

Authorisation

If you have authorisation on your API, you need to add the Authorisation header to the headers object in order to auth.

We have plans for implementing an authentication interface but are still deciding how best to do it.

In the short term, this needs to only be run once and affects all future requests on that schema in the memory of the browser.

const headers = API.{schema}.headers
headers.append("Authorization", "Your magic password/token")

API.{schema}
    .create({ test: "test" })
    .then(response => response.json())
    .then(console.log.bind(console))
    .catch(console.error.bind(console))