Security News
npm Updates Search Experience with New Objective Sorting Options
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
@trivia-api/models
Advanced tools
Typescript models and guards for types used in The Trivia API.
Install the models with npm install @trivia-api/models
, and use within Typescript files:
import { type Question } from "@trivia-api/models";
// The Typescript compiler will complain because there is no `incorrectAnswers` property
const invalidQuestion: Question = {
question: "What is the capital of France?",
correctAnswer: "Paris",
category: "Geography",
tags: ["france", "capital_cities", "europe"],
type: "Multiple Choice",
difficulty: "easy",
id: "abcde-fg",
};
// The compiler will be happy because this is a valid instance of Question - all required properties are present.
const validQuestion: Question = {
question: "What is the capital of France?",
correctAnswer: "Paris",
incorrectAnswers: ["Lyon", "Marseilles", "Bordeaux"],
category: "Geography",
tags: ["france", "capital_cities", "europe"],
type: "Multiple Choice",
difficulty: "easy",
id: "abcde-fg",
};
FAQs
Models for The Trivia API.
The npm package @trivia-api/models receives a total of 8 weekly downloads. As such, @trivia-api/models popularity was classified as not popular.
We found that @trivia-api/models 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.
Security News
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.