
Security News
Packagist Urges Immediate Composer Update After GitHub Actions Token Leak
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.
@lightningkite/lightning-server-simplified
Advanced tools
A TypeScript library providing web tools and client utilities for interacting with [Lightning Server](https://github.com/lightningkite/lightning-server), a Kotlin backend framework.
A TypeScript library providing web tools and client utilities for interacting with Lightning Server, a Kotlin backend framework.
npm install @lightningkite/lightning-server-simplified
This library provides a RestEndpoint interface for CRUD operations on resources:
import { RestEndpoint } from '@lightningkite/lightning-server-simplified';
// Assuming you have a RestEndpoint instance for a User model
const users: RestEndpoint<User> = /* ... */;
// Query users
const userList = await users.query({ condition: { name: { Equal: "John Doe" } } });
// Insert a new user
const newUser = await users.insert({ _id: 'user-id', name: 'John Doe', email: 'john@example.com' });
// Modify a user
const updatedUser = await users.modify('user-id', { name: { Assign: 'Jane Doe' } });
Use Condition and Modification types to build complex queries and updates:
import { Condition, Modification } from '@lightningkite/lightning-server-simplified';
const condition: Condition<User> = {
name: { Equal: 'John' }
};
const modification: Modification<User> = {
name: { Assign: 'Jane' }
};
npm run build
This compiles the TypeScript source to JavaScript in the dist/ directory.
npm test
Runs the Jest test suite with coverage.
This project is part of the Lightning Server repository. Please see the main repository for contribution guidelines.
MIT
FAQs
A TypeScript library providing web tools and client utilities for interacting with [Lightning Server](https://github.com/lightningkite/lightning-server), a Kotlin backend framework.
We found that @lightningkite/lightning-server-simplified demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.

Research
GemStuffer abuses RubyGems as an exfiltration channel, packaging scraped UK council portal data into junk gems published from new accounts.

Company News
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.