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

@api-modeling/amf-client-js

v4.2.3

Published

AMF Library

Downloads

5

Readme

Build Status

AML Modeling Framework

This project aims to provide a common programming interface that lets developers interact with any API specification, whether it is written in OpenAPI Specification (OAS) or RAML, similar to the way the HTML DOM allows programmatic interaction with an HTML document.

Vision

The API Modeling Framework (AMF) allows users to formally describe different kinds of APIs, parse and generate instances of those APIS as sets of modular documents and store those connected descriptions into a single unified data graph.

Goals

  • Support for multiple languages with a unified output API/model for clients
  • Support for both, document (RAML modularity) and domain (service clients), layers
  • Bi-directional transformation
  • Support for validation at document and service layers
  • Produce a formal specification for the language
  • Extensible, single document model for multiple domain vocabularies
  • Consistent parsing behavior

General scope

The library supports many of the required uses cases:

  • Parse a 0.8 / 1.0 RAML, 2.0 / 3.0 OAS and JSON-LD AMF model.
  • AMF API design model creation.
  • Model edition.
  • Export to any of the mentioned standards.

Usage

To use AMF you should first generate or get the right distribution for your project and import them as dependencies.

Installation

Requirements

  • Scala 2.12.2
  • sbt 0.13.15
  • Node

Useful sbt commands

Test

  • Tests on jvm and js
sbt test

Coverage reports

sbt coverage test coverageReport

Generate artifacts directly from cloned repository

sbt package

This will generate jvm JARs in each of the module's targets.

sbt buildJS

This will generate a js artifact in ./file://amf-client/js/amf.js

JVM artifacts

To use, specify dependency.

Gradle example:

dependencies {
    compile 'com.github.amlorg:amf-client_2.12:x.y.z'
}
repositories {
    ...
    maven {
            url 'https://repository-master.mulesoft.org/nexus/content/repositories/releases'
        }
    ...
}

Maven example:

<dependency>
    <groupId>com.github.amlorg</groupId>
    <artifactId>amf-client_2.12</artifactId>
    <version>x.y.z</version>
</dependency>

NOTE: you may use the -SNAPSHOT versions of the JVM artifacts at your own risk since those snapshot versions may contain breaking changes.

JS artifacts

Execute the command

npm install --save amf-client-js

Using Node.js just import it using:

import amf from 'amf-client-js'

The amf package will contain all exported classes:

amf.plugins.document.WebApi.register();
amf.plugins.document.Vocabularies.register();
amf.plugins.features.AMFValidation.register();

amf.Core.init().then(function () {
  // AMF code here
})

Command line usage

You can build a standalone Java executable (JAR) running the following SBT target:

sbt buildCommandLine

This will generate an executable JAR at the top level directory that can be used to execute AMF from the command line.

Using this JAR, you can run tasks from command line, for instance:

java -jar amf-x.y.z.jar parse -in "RAML 1.0" -mime-in "application/yaml" yourAPIfile

or

java -jar amf-x.y.z.jar validate -in "RAML 1.0" -mime-in "application/yaml" -p "RAML" yourAPIfile

or

java -jar amf-x.y.z.jar translate  yourAPIOASfile --format-in "OAS 3.0" -mime-in "application/json" --format-out "RAML 1.0" -mime-out "application/raml+yaml"

To get all available options:

java -jar amf-x.y.z.jar

Using this JAR you can execute AMF by passing one of the following commands:

  • parse <input_file> -in FORMAT
  • translate <input_file> <output_file> -in FORMAT_IN -out FORMAT_OUT
  • validate <input_file> -in FORMAT_IN -p VALIDATION_PROFILE

An interactive section can be started using the repl command.

If you want to parse any RAML dialect other than RAML 1.0, you can pass a list of dialects to be loaded in the parser through the dialects option.

Refer to the usage of the application for additional commands and explanations.

Examples

Go to amf examples repository There are examples for each one of the three usages and a converter project that add some UI on top of the library.

Validation

Validation is one of the key features of AMF. Please check the following link to get more information:

Validation insights

Want to learn more?

Click here for more documentation and playground

Want to contribute?

If you are interested in contributing code to this project, thanks! Please read and accept the Contributors Agreement. This should automatically create a Github issue with the record of your signature here. If for any reason, you do not see your signature there, please contact us.