node-sparql-client
node-sparql-client copied to clipboard
Wrong require name
From my point of view the require module name in readme should looks like that:
var SparqlClient = require('sparql-client-2');
instead of
var SparqlClient = require('sparql-client');
On npm you call this package as sparql-client-2 and cmd to install is:
npm install sparql-client-2
So, if somebody will execute npm install sparql-client-2 the require name also must be sparql-client-2.