
Research
/Security News
Laravel Lang Compromised with RCE Backdoor Across 700+ Versions
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.
Faast push notification API module for node.js.
Normal install:
npm install push-node
Or the latest version from Github, can be unstable:
npm install git+https://github.com/fvdm/nodejs-push
To use this module you need an account at Faast and set the API token from your account.
Send a notification to yourself.
// setup
var faast = require('push-node')( 'API token' )
// notify
faast.notify(
{
message: 'Alert message',
action_loc_key: 'Alert Button'
title: 'Subject line',
subtitle: 'Below the subject',
long_message: 'The message (also in preview if <b>long_message_preview</b> is not set)',
long_message_preview: 'Preview text',
run_command: 'http://example.net/12345'
},
console.log
)
The methods below take a callback function as last parameter.
The callback receives two parameters err in case of an error and data.
function myCallback( err, data ) {
if( err ) {
console.log( err )
console.log( err.stack )
} else {
console.log( data.id )
}
}
faast.notify( props, myCallback )
| message | description |
|---|---|
| request failed | The request cannot be made, see err.error |
| request closed | The connection was closed too early |
| invalid response | The API returned unparsable data |
| API error | The API returned an error, see err.code and err.body |
The user account details and settings.
faast.settings( console.log )
{ fb_push_command: 0,
facebook_paid: true,
force_twitter_client: true,
twitter_sound: 'S',
unlocked: true,
weekend_silent_mode_at: '2000/01/02 23:00:00 +0000',
facebook_sound: '' }
Send a notification to the user.
faast.notify(
{
message: 'Alert message',
long_message: 'The message (also in preview if <b>long_message_preview</b> is not set)',
title: 'Subject line',
subtitle: 'Below the subject',
long_message_preview: 'Preview text',
action_loc_key: 'Alert Button'
},
console.log
)
{ title: 'Subject line',
message_level: 0,
long_message: 'The message (also in preview if <b>long_message_preview</b> is not set)',
long_message_preview: 'Preview text',
subtitle: 'Below the subject',
send_at: '2012/07/11 19:27:00 +0000',
id: 12345,
favorite: false,
hasread: false,
message: 'Alert message',
display_ads: false }
| name | description |
|---|---|
| message | Alert message text |
| action_loc_key | Alert button text |
| title | Subject line |
| subtitle | Below the subject |
| long_message | HTML message content |
| (also in preview if long_message_preview is not set)
long_message_preview | Preview text run_command | URL to open on 'action_loc_key' button silent | No alert window, just increase badge number message_level | Importance, -2 to 2 sound | Alert sound ID, | see https://gist.github.com/penso/1217045 icon_url | Notification icon URL
Get a list (array) of notifications from the server.
faast.notifications( console.log )
[ { thread_id: null,
title: 'Subject line',
send_at: '2012/07/11 19:34:15 +0000',
app_id: null,
long_message_preview: 'Preview text',
subtitle: 'Below the subject',
icon_url: null,
id: 50103867 },
{ thread_id: null,
title: 'Subject line',
send_at: '2012/07/11 19:34:12 +0000',
app_id: null,
long_message_preview: 'Preview text',
subtitle: 'Below the subject',
icon_url: null,
id: 50103866 } ]
Delete all notifications from the server. This won't touch the device(s) as they use a local cache.
faast.destroyall( console.log )
{ Response: { OK: 'OK' } }
Get a list (array) of subscribed RSS feeds.
faast.feeds( console.log )
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to http://unlicense.org/
FAQs
Send push notifications with Faast (http://faast.io)
The npm package push-node receives a total of 2 weekly downloads. As such, push-node popularity was classified as not popular.
We found that push-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.

Security News
Socket found a malicious postinstall hook across 700+ GitHub repos, including PHP packages on Packagist and Node.js project repositories.

Security News
Vibe coding at scale is reshaping how packages are created, contributed, and selected across the software supply chain