
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
express-calendar
Advanced tools
Zero-dependency express middleware for Google Calendar (API v3)
This is meant to be a read-only proxy for the events of a publicly accessible Google Calendar. Currently, only API key access is supported. OAuth support is not planned.
npm install express-calendar --save
var express = require('express')
var expressCalendar = require('express-calendar')
var options = {
calendarId: '<put your calendar ID here>@group.calendar.google.com',
parameters: {
key: '<put your API key here>'
}
}
var app = express()
expressCalendar(app, options)
curl http://express-calendar.node.js:3000/2016/04/01/
{
"items": [
{
"id":"klnkbropn11lrjs54qp1ukaqog",
"summary":"The Rainbow"
},
{
"id":"60gmq65c60e2tcodiiabpjmdqc",
"summary":"The Jets"
},
{
"id":"mh8d5b0avsoa8q3r0luu50626c",
"summary":"The Sharks"
}
],
"dateRange": [
"2016-04-01T00:00:00.000Z",
"2016-04-02T00:00:00.000Z"
]
}
See also the example.
calendarId
: ID of your Google Calendar, typically something@group.calendar.google.com
(required)parameters
: anything that can be passed to calendar.events.list, e.g.
key
: your Google API key (required)fields
: fields to include in responsetemplates
: mapping from MIME types (may be canonicalized) to functions which transform the JSON response to the desired output (see example)FAQs
express middleware for Google Calendar
The npm package express-calendar receives a total of 0 weekly downloads. As such, express-calendar popularity was classified as not popular.
We found that express-calendar 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.