onlang-org / onst-schemastore

Standalone package designed as helper for on-lang. Fetches catalog from SchemaStore (www.schemastore.org) and categorises it into different entities based on similarity.

Home Page:http://onlang.js.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

onlang_shorthand

onst-schemastore

Fetch schemata from SchemaStore catalog interactively. The package fetches and categorises the catalog into searchable topics that can be fetched in groups. (eg. All AWS schemata can be downloaded from groups AWS or Amazon). The package can be used in typescript and JS projects as a module or used via standalone CLI command onst-ss.

CodeQL npm version npm downloads license forks

Built for ONLang

A utility library bundled with superfast CLI for categorizing SchemaStore catalog into entities and list them. The catalog is broken into different entities based on similarity using Levenshtein Distance and Spelling Distance. This is achieved by using the fastest-levenshtein package.

The objective is to provide schema from many systems on the fly.

Table of Contents

Installation

npm install -g @onlang-org/onst-schemastore

Usage

Fetch Schema From SchemaStore

const { fetchSchemaFromSchemaStore } = require('@onlang-org/onst-schemastore');

async function exampleUsage() {
  
  try {
    const result = await fetchSchemaFromSchemaStore();
    console.log(`${answer} has ${result.schema.length} ${result.schema.length === 1 ? 'schema' : 'schemata'}.`);

    result.schema.forEach(schema => {
        console.log(`- ${schema.name} - ${schema.url}`);
    })

  } catch (error) {
    console.error(`Error fetching schema for ${schemaName}:`, error.message);
  }
}

exampleUsage();

Search Schema

const filteredEntities = await findSchema(input, categorizedSchemas)
  return filteredEntities.map(schema => {
      return {
        value: schema,
        description: `${schema} selected`
      }
  })

CLI usage

> onst-ss

> ? Which entity would you want to download? AWS

> AWS has 4 schemata.
  - AWS CDK cdk.json - https://json.schemastore.org/cdk.json
  - AWS CloudFormation - https://raw.githubusercontent.com/awslabs/goformation/master/schema/cloudformation.schema.json
  - AWS CloudFormation Serverless Application Model (SAM) - https://raw.githubusercontent.com/aws/serverless-application-model/main/samtranslator/schema/schema.json
  - AWS SAM CLI Samconfig - https://raw.githubusercontent.com/aws/aws-sam-cli/master/schema/samcli.json

License

Copyright (c) 2024 ONLang.org https://github.com/onlang-org (rajatasusual https://github.com/rajatasusual) Read more about the license.

Contributing

Thank you for considering contributing to @onlang-org/onst-schemastore! Your contributions help improve the functionality and usability of this tool. For more details, please refer to CONTRIBUTING.md.

About

Standalone package designed as helper for on-lang. Fetches catalog from SchemaStore (www.schemastore.org) and categorises it into different entities based on similarity.

http://onlang.js.org/

License:MIT License


Languages

Language:JavaScript 100.0%