Speaker Deck scraper for Node.js.
Why a Scraper? They don't have an API (yet).
Setup
Install the module with: npm install --save speakerdeck-scraper
Basic Usage
.getUser()
The getUser()
method accepts a user ID (the speaker deck path) and an optional page number.
This returns a Promise resolving to the users information and talks for the supplied page.
var speakerdeck = ;speakerdeck;
.getTalk()
The getTalk()
method accepts a talk ID (the speakerdeck.com path) and returns a Promise resolving to the talk information.
var speakerdeck = ; speakerdeck
User Data
The following properties are available on the returned user
object:
"user": "id": String "url": String "name": String "avatar": String "bio": String "talks": "pages": Number "page": Number "items": "id": String "title": String "url": String "date": String "slides": Number "thumbnail": String
Talk Data
The following properties are available on the returned talk
object:
"user": "id": String "url": String "name": String "avatar": String "description": String "date": String "stars": Number "category": String "views": Number "embed": String "download": String
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.
Lint your code with gulp lint
and run tests with gulp test
All code is linted and tested automatically once pushed using Travis CI.
License
Copyright (c) 2015 Patrick Hamann Licensed under the MIT license.
Acknowledgements
Heavily inspired by Mark Daglesish's lanyrd-scraper