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

@manuscripts/manuscripts-json-schema

v2.0.0

Published

Schema for models used in Manuscripts applications, plus validator functions for Sync Gateway

Downloads

254

Readme

manuscripts-json-schema

Module usage

> const validate = require('@manuscripts/manuscripts-json-schema');
undefined
> validate({ objectType: 'MPContributor' })
[ { keyword: 'required',
    dataPath: '',
    schemaPath: '#/required',
    params: { missingProperty: 'firstName' },
    message: 'should have required property \'firstName\'' } ]
> validate({ objectType: 'MPContributor', potato: 1 })
[ { keyword: 'additionalProperties',
    dataPath: '',
    schemaPath: '#/additionalProperties',
    params: { additionalProperty: 'potato' },
    message: 'should NOT have additional properties' } ]

Versioning scheme

This repository uses a semantic versioning scheme with the following interpretation:

  • major version: "incompatible change": changing the meaning of an existing field, or introduction of a new required field on a type, or any action that requires migrating existing data.
  • minor version: addition of a new feature in the schema for which there is no reason to believe it requires migrating already stored data: new optional fields, new entities.
  • patch version: all bug fixes that do not fall into either of above categories.

NOTE: As a general rule, schema changes generally only add new fields or mark existing optional or mark additional non-described fields acceptable (marking optional and allowing for additional fields effectively "softly deprecating" the use of pre-existing fields that may have previously been referred to in the schema as required fields): data conforming to this schema is assumed to be synchronised across in an eventually consistent manner across clients that may be disconnected from each other for long periods of time, and data is validated at synchronisation time with the most recent recent schema. It is therefore as a general rule difficult to create schema changes that change the meaning of, or remove existing fields, in a way that is to be reflected as schema validator visible changes (because old data can inadvertently become invalid according to new schema validation rules).

How do I get my schema change accepted?

To make schema changes visible at a running instance of manuscripts-frontend, please complete the following steps.

Make the schema changes

  1. Create a branch for your schema changes with a descriptive name, and make your changes on that branch.
  • Include automated tests for them. For example tests, see (manuscripts-validator.test.js)[https://gitlab.com/mpapp-public/manuscripts-json-schema/blob/master/tests/manuscripts-validator.test.js].
  • Update the "version" property in package.json.
  1. Post a merge request for your schema changes for a merge to master + address review comments. Once the MR is merged, the @manuscripts/manuscripts-json-schema package is published automatically. NOTE: package publishing will fail if you did not update the version string in package.json as part of your changes.

Reference the updated schema in manuscripts-sync

  1. Create a branch of manuscripts-sync where you update the @manuscripts/json-schema version in the package.json and where you also update the "version" property of manuscripts-sync itself (for the same reason as above, the package version determines a successful @manuscripts/manuscripts-sync publishing to NPM, and the publishing of a manuscripts-sync Docker image in the Docker registry associated with manuscripts-sync. If your changes to manuscripts-json-schema introduce any access control rule related changes (e.g. change in behaviour with respect to containerID etc ACL related fields), please test your changes thoroughly.
  2. Post a merge request for your manuscripts-sync changes + address review comments. Once MR is merged, an updated @manuscripts/manuscripts-sync NPM package is made available with the version string you used, and an updated manuscripts-sync Docker image is made available under registry.gitlab.com/mpapp-public/manuscripts-sync/sync_gateway.

Reference the updated manuscripts-sync Docker image + NPM package in manuscripts-api

  1. Create a branch of manuscripts-api
  • NOTE: this repository is still private (the last private repository in the project), will soon be made public – request access via the Friends of Manuscripts Slack chat if you want in already.
  • Edit docker/utils/templates/docker-compose.yml.ejs on your branch to reference the updated manuscripts-sync/sync_gateway image. This has effect for local docker-compose based development environment only.
  • Edit @manuscripts/sync reference in package.json to reference the updated NPM package version. This change is needed for both local development and production-like environments.
  1. Post a merge request for your manuscripts-api changes + address review comments. Once MR is merged, an updated manuscripts-api Docker image is published to the Docker registry associated with the repository.

Documentaion

Run npm run docs and open http://localhost:3000