This repository contains source code of RDF Turtle Editor with following features;
- RDF turtle syntax highlighting
- Live RDF turtle syntax validation
- Checks conformance of RDF document with Web of Data
- Parses prefixed ontologies and adds as part of auto-completion
- Makes newly defined terms in current document part of auto-completion
- Parses prefixed ontologies in both rdf+xml and turtle format
- ...and many more
- Compatible with RDFJS task force spec
In order to deploy your own copy of the RDF turle editor, below procedure can be applied;
$ git clone <url-of-this-repo>
$ cd <reponame>
$ npm start
This is possible to start the editor as a pm2 process;
$ git clone <url-of-this-repo>
$ cd <reponame>
$ pm2 start "npm" --name "rdfeditor" -- start
Special thanks goes to;
- Linkeddata team for rdflib.js
- Contributors behind ace editor that rdfturtleditor uses to incorporate turtle format specifications
- Prefix.cc that is used to fetch popular prefixes for prefix auto-completion