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

json-schema-to

v0.0.37

Published

JSON-Schema To ≤GraphQL|Protobuf|Code≥.™

Downloads

24

Readme

Build status NPM version Coverage Status Dependency Status devDependency Status

JSON-Schema To ≤GraphQL|Protobuf|Code≥.™

Generate third-party definitions directly from your JSON-Schema.

Contribute!

This module is under development, we're missing:

  • [ ] Documentation
  • [ ] Advanced examples
  • [ ] TypeScript support
  • [ ] Complete unit-testing
  • [ ] Complete code-coverage

How it works?

JSON-Schema, GraphQL and Protobuf are generated from YAML definitions, e.g.

id: User
service:
  calls:
  - set: updatePassword
    resp: User
    input: UpdatePasswordParams
    params: UpdatePasswordRequest
definitions:
  UpdatePasswordParams:
  UpdatePasswordRequest:

This definition is also a JSON-Schema definition.

Actually, it can be a .json file to but YAML format it's easier to maintain.

Due resp, input and params are schema identifiers they'll be looked-up from all available schemas or from #/definitions on the current file.

Options for calls are:

  • get — RPC call (or Query)
  • set — RPC call (or Mutation)
  • resp — Response type
  • input — Request type
  • params — Request type (Protobuf only)

Use the params option only if you want different input types.

Having some definitions like this we can produce different outputs, e.g.

$ tree .
.
└── schema
    └── test.yml

1 directory, 1 file

$ npx json-schema-to -s schema --json --graphql --protobuf
write ./generated/user.json
write ./generated/user.gql
write ./generated/user.proto
write ./generated/common.json
write ./generated/common.gql
write ./generated/common.proto

Now you can use those sources in your application.

Use --help to display more usage info from the CLI

TypeScript

We're able to produce .d.ts files as well.

Types, enums and interfaces are exported together in a single entry-point:

import type { User, Success } from './generated';

const ok: Success = { success: true };
const user: User = { email: '[email protected]', role: 'USER' };

console.log(ok);
console.log(user);

Enumerations

The generated index.js script exports a function that can be called to augment any object with the exported enums:

// main/index.js
require('../generated')(module.exports = {
  // other stuff
});

Later, just import your wrapped module and use the available enums, e.g.

// test.ts
import { someEnum } from './main';

const value: someEnum = someEnum.SOME_VALUE;

If you have a ./main/index.d.ts file any used enum will be type-checked in your script.

Supported keywords

Currently, a small subset of keywords from JSON-Schema v4 are supported:

  • id — Used to declare types or services, it MUST be unique
  • $ref — Dereferencing is resolved against defined refs only
  • enum — Fixed set of values to enumerate, strings only
  • type — Declare the used type of any given definition
  • items — Standard definition of repeated objects, array will not work
  • required — List of required properties to declare in the generated types
  • properties — Standard set of properties from a given object, they are the type props
  • definitions — Additional types to export, if no id is given then its basename will be used

⚠ More keywords can be implemented later, by now complete support is no a requirement.