node-fb-graph
v0.1.0
Published
Node.js module for interacting with the Facebook Graph API
Downloads
25
Maintainers
Readme
node-fb-graph
Node.js module for interacting with the Facebook Graph API.
Overview
This module interfaces with the Facebook Graph API using a specific client access token that must be provided by the consumer of this library.
Access Token
This module requires a page id and a page access token that corresponds to that page id. A page access token will expire frequently. To create an extension for the access token, use Facebook's Access Token Debugger to debug the token. On the Access Token tab, click the Extend Access Token button on the bottom left. If the button is not present you are most likely debugging a user access token. Copy and paste your page access token into the debugger and click Debug. The Extend Access Token button should now appear.
Installation
npm
npm install node-fb-graph -S
Tests
npm test
Code Quality
Code quality will be checked using eslint with the --fix
argument so repair easily-fixed rule-breaking code.
npm run lint
Code Coverage
Code coverage is maintained by using the nyc command-line-client for Istanbul with Coveralls reporting.
Continuous Integration
Continuous integration provided by Travis CI.
Contributing
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
Community
Updates and discussions about this module can be found @symBrendan on Twitter.
Versioning
For transparency into a common release cycle to strive toward maintaining backward compatibility, this project is maintained under the Semantic Versioning guidelines.
Creating a New Version
The following commands will create a new version of the module, automatically create a new tag with the same value as the version, push the tags to the remote, and, finally, push the code to the remote.
Stage your files
git add .
Commit with message
git commit -m "your commit message"
Publish the module to npmjs.org
The npm publish
command will create a patch in package.json, add a new tag, push the tag, and publish the changes to npmjs.
npm publish
Creator
Brendan Conrad
License
This project is licensed under the terms of the MIT license.