
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
`moss-core` enables **private, on-device semantic search** in your web, mobile, and edge applications - without cloud dependencies.
moss-core enables private, on-device semantic search in your web, mobile, and edge applications - without cloud dependencies.
Built for developers who want instant, memory-efficient, privacy-first AI features inside their apps.
npm install moss-core
import { MossClient, DocumentInfo } from "moss-core";
async function main() {
// Initialize search client with project credentials
const mossClient = new MossClient(
"your-project-id",
"your-project-key"
);
// Prepare documents to index
const documents: DocumentInfo[] = [
{
id: "doc1",
text: "How do I track my order? You can track your order by logging into your account.",
},
{
id: "doc2",
text: "What is your return policy? We offer a 30-day return policy for most items.",
},
{
id: "doc3",
text: "How can I change my shipping address? Contact our customer service team.",
},
// Add more documents here
// .
// .
// .
];
// Create an index with documents and model
const indexName = "faqs";
const created = await mossClient.createIndex(
indexName,
documents,
"moss-minilm"
);
console.log("Index created:", created);
// Load the index before searching
await mossClient.loadIndex(indexName);
// Search the index
const result = await mossClient.query(
indexName,
"How do I return a damaged product?",
3 // top 3 results
);
// Display results
console.log(`Query: ${result.query}`);
result.docs.forEach((match) => {
console.log(`Score: ${match.score.toFixed(4)}`);
console.log(`ID: ${match.id}`);
console.log(`Text: ${match.text}`);
console.log("---");
});
}
main().catch(console.error);
This package is licensed under the PolyForm Shield License 1.0.0.
For support, commercial licensing, or partnership inquiries, contact us: contact@inferedge.dev
FAQs
`moss-core` enables **private, on-device semantic search** in your web, mobile, and edge applications - without cloud dependencies.
The npm package moss-core receives a total of 0 weekly downloads. As such, moss-core popularity was classified as not popular.
We found that moss-core 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.