Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@inrupt/solid-sdk-forms
Advanced tools
This is a standalone Typescript library designed to handle the creation of Form Models from shapes, and other form-related features.
NOTE: This library is still a work in progress. We are using lessons learned while building the library to improve the code and structure.
To install, simply run the command
npm install --save @inrupt/solid-sdk-forms
There are a few things you can do with this library. The most common usage will be converting a ShEx shape to a Form Model object.
This can be done with the following code:
import { ShexFormModel, FormModel } from '@inrupt/solid-sdk-forms';
const formModel = new FormModel();
const schema = await formModel.parseSchema(schemaUrl);
const shexClass = new ShexFormModel(schema);
const formModelOutput = shexClass.convert();
In this example, we are given a schemaUrl (hardcoded or fetched, whichever you prefer) and use the new FormModel class to convert it. The breakdown is as follows:
This function fetches and parses the ShEx schema and returns it. This can be in ShExC, ShExR, or ShExJ format.
This function, belonging to the ShexFormModel class, does the actual conversion from a ShEx schema to a FormModel object. It does this by the following high level steps:
start
shape of the schema. This is the shape in the schema that represents the "beginning" of the shape. If one does not exist, we take the first shape in the array. This is very important when a schema file has multiple shapes in the same file.FAQs
Solid library for converting and generating Forms
The npm package @inrupt/solid-sdk-forms receives a total of 7 weekly downloads. As such, @inrupt/solid-sdk-forms popularity was classified as not popular.
We found that @inrupt/solid-sdk-forms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.