
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@xg-wang/openai-js
Advanced tools
Unofficial Node.js wrapper for the OpenAI API
See generated API doc: openai-js.
import { Client, ClientOptions } from "opanai-js";
// API Keys: https://beta.openai.com/docs/api-reference/authentication
const client = new Client({ apiKey: process.env.API_KEY });
// https://beta.openai.com/docs/api-reference/engines
const engines = await client.engines.list();
// https://beta.openai.com/docs/guides/completion
const completions = await client.completions.create("davinci", {
prompt: "Once upon a time",
max_tokens: 5,
temperature: 1,
top_p: 1,
n: 1,
stream: false,
logprobs: null,
stop: "\n",
});
// https://beta.openai.com/docs/guides/search
const search = await client.search.create("davinci", {
documents: ["White House", "hospital", "school"],
query: "the president",
});
// https://beta.openai.com/docs/guides/classifications
const classification = await client.classifications.create({
examples: [
["A happy moment", "Positive"],
["I am sad.", "Negative"],
["I am feeling awesome", "Positive"],
],
labels: ["Positive", "Negative", "Neutral"],
query: "It is a raining day :(",
search_model: "ada",
model: "curie",
});
// https://beta.openai.com/docs/guides/answers
const answer = await client.answers.create({
documents: ["Puppy A is happy.", "Puppy B is sad."],
question: "which puppy is happy?",
search_model: "ada",
model: "curie",
examples_context: "In 2017, U.S. life expectancy was 78.6 years.",
examples: [
["What is human life expectancy in the United States?", "78 years."],
],
max_tokens: 5,
stop: ["\n", "<|endoftext|>"],
});
FAQs
Node.js wrapper for the OpenAI API
We found that @xg-wang/openai-js 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.