Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@wiredmartians/whatsamenu-node
Advanced tools
A Node.js client for WhatsAMenu API
Make sure your node environment is setup
This package assumes you already have an API Key. If you don't have one, you can go to wiredmartians.com to create one or use http endpoint to create a key
Using npm:
$ npm install @wiredmartians/whatsamenu-node
Using yarn:
$ yarn add @wiredmartians/whatsamenu-node
API_KEY = <your api key>
API_BASE_URL=https://whatsamenu.core.wiredmartians.com/v1
This lib currently uses only axios for http requests
import { DefaultMenuHttpClient } from "@wiredmartians/whatsamenu-node"
// setup an axios client
const apiKey = process.env.API_KEY
const baseURL = process.env.BASE_URL
const client = DefaultMenuHttpClient.create({
baseURL,
headers: {
"X-API-Key": apiKey
}
})
A bootstrapped Whatsamenu API will return a singleton which can be used call other object functions
import { MenuAPI } from "@wiredmartians/whatsamenu-node"
// bootstrap menuApi, passing the axios client
const { menuApi } = new MenuAPI(client)
// make requests
menuApi.restaurant
.getRestaurants()
.then((res) => console.log(res))
.catch((err) => console.error(err))
import { Restaurant } from "@wiredmartians/whatsamenu-node/restaurant"
// pass the axios client
const restaurant = new Restaurant(client)
// make requests
restaurant
.getRestaurants()
.then((res) => console.log(res))
.catch((err) => console.error(err))
import { AxiosInstance } from "axios"
import { DefaultMenuHttpClient, MenuAPI } from "@wiredmartians/whatsamenu-node"
import { Restaurant, RestaurantResult } from "@wiredmartians/whatsamenu-node/restaurant"
const apiKey = process.env.API_KEY
const baseURL = process.env.API_BASE_URL
const client: AxiosInstance = DefaultMenuHttpClient.create({
baseURL,
headers: {
"X-API-Key": apiKey
}
})
const { menuApi } = new MenuAPI(client)
const restaurant: Restaurant = menuApi.restaurant
restaurant.getRestaurants()
.then((res: RestaurantResult[]) => console.log(res))
.catch((err) => console.error(err))
FAQs
Whatsamenu Nodejs API Client
The npm package @wiredmartians/whatsamenu-node receives a total of 0 weekly downloads. As such, @wiredmartians/whatsamenu-node popularity was classified as not popular.
We found that @wiredmartians/whatsamenu-node demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.