Skip to content

magnetik/node-webid

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#node-webid

Node.js module with tools to help using WebID (http://www.webid.info).

##Installation

Just require the module webid:

var webid = require('webid');

Manual

Start cake build and get the webid.js in the bin folder.

Usage

Check the project webid-demo to see a working example.

Basic usage:

var webid = require('webid');
var verifAgent = new webid.VerificationAgent(certificate);
	verifAgent.verify(function (result) {
		//Success! User is identified
		var foaf = new webid.Foaf(result);
		req.session.profile = foaf.parse();
	}, function(result) {
		//An error occured
	});

##Licence

The lib is available under MIT Licence: http://www.opensource.org/licenses/MIT

About

WebID node.js library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CoffeeScript 100.0%