
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
A Node.js client library for the University of Waterloo's Open Data API.
Run
npm install --save luu
Import the Client
from luu.
import { Client } from 'luu';
const client = new Client('YOUR_API_KEY');
Or, with require()
,
const luu = require('luu');
const client = new luu.Client('YOUR_API_KEY');
Make a request.
// request() returns a promise which resolves to the JSON response from the API
client.request('foodservices/menu').then(console.log).catch(console.error);
You can specify parameters for the endpoint string as well. This library uses sprintf-js to parse the endpoint string. Pre-defined parameterized endpoint strings are exported through Constants
.
import { Constants } from 'luu';
client.request(Constants.FS_YEAR_WEEK_MENU, {
year: 2015,
week: 2,
}).then(console.log);
// equivalent to
client.request('foodservices/%(year)s/%(week)s/menu', {
year: 2015,
week: 2,
}).then(console.log);
FAQs
A Node.js client library for the University of Waterloo's API.
The npm package luu receives a total of 1 weekly downloads. As such, luu popularity was classified as not popular.
We found that luu 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.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.