0.1.0 • Published 9 years ago

social-share-link v0.1.0

Weekly downloads
3
License
(MIT OR Apache-2....
Repository
github
Last release
9 years ago

Social Share

A simple and easy-to-use social share link. It can be used nodejs.


Node.js support

Install social-share by npm

$ npm install social-share-link

Just use it

var share = require('social-share-link');
var url = share('twitter', {
    title:'share it'
});

If you use express, you can

app.get('/redirect', function(req, res) {
    var url = share(req.query.service, req.query);
    res.redirect(url);
});
0.1.0

9 years ago