node-pushbullet-api icon indicating copy to clipboard operation
node-pushbullet-api copied to clipboard

PushBullet API module for Node.js

Results 7 node-pushbullet-api issues
Sort by recently updated
recently updated
newest added

to be able to work with pushbullet in an typescript development process, `@types/pushbullet` package needs to be available. Are you planning to dive into this in near future?

Can you please provide a full working example of how to use the library in NodeJS? I do not succeed in loading the library. I always get errors such as...

In [pushes.js#70](https://github.com/alexwhitman/node-pushbullet-api/blob/master/lib/internal/pushes.js#L70C2-L70C57) you have: ``` formData.append('file', fs.createReadStream(filePath)); ``` I think something has changed here. `formData.append(name, x)` expects a string here so `fs.createReadStream(filePath)` is `toString()`'ed to "[object Object]" and that is...

I'm trying to send a file using version 3.0.0 and it's uploading junk. Do you get the same results? ``` import PushBullet from 'pushbullet' import fs from 'fs' import {...

Following your documentation. I am using version 3.0.0. What am I doing wrong? How can I get the useful information using your module? ``` import PushBullet from 'pushbullet' import {...

I have these two simple lines of code and it just fails to run :/ ```js let PushBullet = require('pushbullet'); let pusher = new PushBullet('my-api-key'); ``` ``` Uncaught TypeError TypeError:...