I am developing an application in Node.js and I have data in the json representation of a triple like this:
{ subject:"Hello", predicate:"Knows", object:"World" }
I would like to be able to store my data in the [data | triple] in a relatively simple way.
The data values ββin the tuple must also be searchable.
I looked at using an existing RDF server and accessing it via HTTP, but would like to avoid using Sparql (a workaround might be to have a separate javascript module that wraps around Sparql).
Are there any existing Node modules that store triples? If not, what would be a pragmatic solution for storing triples?
source share