Skip to content

A JavaScript Implementation of RDF-KV; Convert FormData to RDF Triples

Notifications You must be signed in to change notification settings

stucco-software/rdf-kv-js

 
 

Repository files navigation

RDF-KV.js

Implements the RDF-KV spec by Dorian Taylor for converting HTML form post FormBody objects into RDF Triples.

Usage

import rdfkv from 'rdf-kv.js'

const response = rdfkv(subject, FormBody)
// maybe? rdfkv(subject)(FormBody)
<!-- returns
{
  delete: `<n-triples>`
  insert: `<n-triples>`
}
-->

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.

About

A JavaScript Implementation of RDF-KV; Convert FormData to RDF Triples

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 95.3%
  • HTML 2.6%
  • Svelte 2.1%