pnut-butter.js
A modern, promise based wrapper library for the pnut.io API.
It is currently developed and tested on Node 8 LTS, but should work with basically any current browser supporting ES6 as well (feel free to open an issue if not), especially if you throw it in your typical Webpack/Babel/whatever toolchain.
Installation
npm install pnut-butter
Usage
Everything related to data fetching returns a Promise, which you can either use directly, with a supporting library like co or the upcoming async/await standard.
For example, to fetch the global timeline:
const pnut = ; async { const meta data = await pnut;};
Fetch a post by its ID:
const pnut = ; async { const meta data = await pnut;};
Most methods allow any arbiritary, additional URL parameters that can be found in the official documentation. For example, you can use something like this:
const meta data = await pnut;
…to get posts in the mentions category before the specified id. We generate them dynamically and convert the parameters to snake_case automatically for you, so it doesn't matter if you write:
const meta data = await pnut;
or
const meta data = await pnut;
Both versions work, it's just syntactic sugar and a matter of personal preference.
Documentation
You can find the full documentation of all methods here.
Custom requests
Pnut is a moving target, so there are still some methods missing and/or parameters that are not yet implemented. Therefor you can always fall back to a custom request with support for all HTTP verbs.
const pnut = ; async { const meta data = await pnut; await pnut; await pnut;};
Authentication
For everything that requires an authenticated user, you will need an access token. You can create one in the setting of your account on pnut.io under the "Develop" menu.
You can set it like this:
const pnut = ;pnuttoken = ACCESS_TOKEN; async { const meta data = await pnut;};
Please consult the pnut docs for further information about how authentication is handled in the network, how to aquire a "real" token able to authenticate multiple users and so on.
Changing profile / cover images
Uploading images is currently only supported on the client side. You can give the DOM node for an upload form containing file fields for "avatar" or "cover" as argument to the corresponding methods uploadAvatar
/ uploadCover
.
A basic HTML form would look something like this:
Depending on how your application is set up, an upload function looks somewhat like this:
{ event; const form = document; await pnut;}
Both, uploadAvatar
and uploadCover
will handle server side uploads in a future release.
App Streams
pnut-butter has support for creating, managing and reading app streams (you need a properly "signed" pair of Client ID and Client Secret to use this).
First, you need to request an app stream access token:
const pnut = ;async { const meta data = await pnut;};
If successful, you will get back a proper token in the response. Set it via:
pnuttoken = YOUR_ACCESS_TOKEN;
Next step is to setup your app stream with up to 5 (!) options (post, bookmark, follow, mute, block, message, channel, channel_subscription, token, user) and a key name:
async { const meta data = await pnut;};
For reading the stream, we provide a separate module you have to require, that preconfigures a web socket connection for you, where you can simply listen on the "message" event to read the stream:
const pnut = ;const AppStreamSocket = ; pnuttoken = "MY_VALID_ACCESS_TOKEN";const ws = ; ws; ws; ws;
You can now work on the streaming data from the "message" event. Keep in mind that you might want to reconnect to the socket in case it closes on the server side.
Collaboration / Project status
Issues / Pull Requests are always welcome. If you have any questions, feel free to drop me an email or write a message on pnut.io. There are still a couple of things not implemented yet (creating and updating channels comes to mind), but should be stable and usable already.