
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@shoraneon/core
Advanced tools
Enterprise-grade headless CMS core library by [Shora](https://shora.co), designed for building modern, scalable content management systems.
Enterprise-grade headless CMS core library by Shora, designed for building modern, scalable content management systems.
Shora CMS Core is a powerful, flexible, and developer-friendly headless CMS library that enables enterprises to build and scale their content infrastructure. Built with TypeScript and modern best practices, it provides a robust foundation for content management needs.
🏢 Enterprise-Ready
🛠 Developer Experience
🔒 Security
🚀 Performance
# Using npm
npm install @shoraneon/core
# Using yarn
yarn add @shoraneon/core
# Using pnpm
pnpm add @shoraneon/core
import { createSchema, defineField } from '@shoraneon/core';
// Define your content schema
const pageSchema = createSchema({
name: 'page',
fields: [
defineField({
name: 'title',
type: 'string',
required: true,
localized: true,
}),
defineField({
name: 'content',
type: 'richText',
localized: true,
}),
],
});
// Initialize with enterprise configuration
const cms = initializeCMS({
schemas: [pageSchema],
security: {
rbac: true,
auditLogs: true,
encryption: {
enabled: true,
algorithm: 'aes-256-gcm',
},
},
performance: {
caching: {
enabled: true,
ttl: 3600,
},
},
});
For comprehensive documentation, visit shora.cloud/docs
MIT © Shora
FAQs
Enterprise-grade headless CMS core library by [Shora](https://shora.co), designed for building modern, scalable content management systems.
We found that @shoraneon/core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.