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

rb-core-module

v0.32.0

Published

The Restboard core module

Downloads

46

Readme

rb-core-module

The Restboard core module

Node.js CI

Getting started

First of all, you need to install the package in your project:

npm i --save rb-core-module

Now, you can start to define and use your resources:

import { createResource } from 'rb-core-module'

// Create a new resource
const users = createResource({
  name: 'users',
  provider: ..., // The data provider used to query the API
  ...
})

// Resources can then be used to interact with the remote API:
const me = await users.getOne(1)

RbResource

RbResource is a base class used to implement a proxy to interact with a remote API resource.

Options

| Name | Description | Default | | --------------- | ----------- | ------- | | name | The unique resource name (e.g. users) || | provider | The data provider used to interact with the API || | key | The identifier attribute name | id | | path | The resource base path (if different than name) | name | | label | A human-readable description label for the resource | capitalized name | | displayAttr | The attr used as representation of a single resource instance | key | | stringify | A function used to get a human-readable reperesentation of a single resource instance | instance => instance[resource.displayAttr] | | schema | The JSON schema representing the strcuture of resource instances | undefined | | updateSchema | The JSON schema used on update | schema | | createSchema | The JSON schema used on creation | schema | | defaultParams | Default params passed to the data provider when fetching the API (e.g. default filters) | {} | | isKeyEditable | If true, allows editing the key of an instance | false | | actions | A map of actions executable on a single resource instance | {} | | listeners | A list of callbacks to be called when the resource is marked as dirty | [] | | methods | A dictionary of extra methods to extend the default resource API | {} | | ui | An object containing UI-specific options and methods. A special formComponent key will be used to assign default form components for creation (ui.createFormComponent) and update (ui.updateFormComponent) if none are specified | {} |

Methods

| Signature | Description | | ------------------------------ | ----------- | | getKey(instance) | Retrieve the primary key of the given resource instance | | stringify(instance) | Render a string representantion of the given resource instance | | getMany(params) | Retrieve a list of resource instances according to the given params | | getOne(key, params) | Retrieve a single resource instance, identified by key and params | | updateOne(key, data, params) | Update a single resource instance, identified by key and params, with the given data | | updateMany(data, params) | Update multiple resource instances according to data and params | | deleteOne(key, params) | Delete a single resource instance identified by key and params | | deleteMany(keys, params) | Delete multiple resource instances identified by the keys array and params | | getRelation(key, name, opts) | Return the related resource identified by name, scoped to the instance identified by key. For opts see Relation options | | getActions() | Return a dictionary of resource actions, where each action is bound to the resource | | setDirty() | Set the resource lastUpdate with the current timestamp and notify registered listeners | | addListener(callback) | Register a new listener callback | | removeListener(callback) | Unregister a previously registered listener callback | | mergeParams(params) | Merge given params with resource default ones |

Relation options

| Name | Description | Default | | --------------------- | ------------------------------------------------ | ------- | | notifyParentOnDirty | If true mark also the parent resource as dirty | true |

RbDataProvider

RbDataProvider is a generic interface used by resources to interact with a third-party API using the correct protocol and dialect.

Methods

| Signature | Description | | -------------------------------------------- | ----------------------------- | | getMany(resourcePath, params) | See RbResource | | getOne(resourcePath, key, params) | See RbResource | | updateOne(resourcePath, key, data, params) | See RbResource | | updateMany(resourcePath, data, params) | See RbResource | | deleteOne(resourcePath, key, params) | See RbResource | | deleteMany(resourcePath, keys, params) | See RbResource |

RbAuthProvider

RbAuthProvider is a generic interface used to perform authentication and authorization over a third-party API, abstracting the details of underlying strategies.

Methods

| Signature | Description | | ------------------------------------- | ----------- | | login(credentials) | Attempt to log the user identified by the given credentials | | logout() | Terminate the current authenticated session | | recoverCredentials(challenge) | Attempt to recover user credentials providing a valid challenge response | | activateOrResetCredentials(payload) | Activate or reset existing user credentials | | checkAuth() | Check if the current authenticated session is still valid | | getIdentity(user) | Given a user, retrieve its textual representation | | getTenantIdentity(user) | Given a user, retireve its tenant identity | | can(user, action, subject) | Check if the given user can perform action on the subject |

Development

# Install dependencies
npm install

# Run tests
npm test

Contribute

If you want, you can also freely donate to fund the project development:

Donate

Have you found a bug?

Please open a new issue on:

https://github.com/restboard/rb-core-module/issues

License

Copyright (c) Emanuele Bertoldi

MIT License