nikolaiwarner / node-snapchat

A SnapChat client in Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-snapchat

A NodeJS client for SnapChat

Usage

var fs = require('fs');
var SnapChat = require('node-snapchat');
var client = SnapChat.Client('username', 'password');
client.login(function() {
  console.log(client.snaps);
  client.fetch(client.snaps[0].id, function(stream) {
    stream.pipe(fs.createWriteStream('Most current snap'));
  });
});

License

BSD-2 Clause

Credits

Thomas Lackner (tlack) for writing snaphax

About

A SnapChat client in Node.js

License:BSD 2-Clause "Simplified" License