
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
simdatabase
Advanced tools
Just installing module
$ npm install simple-databse
Creating file with
import { SimpleDatabase } from 'simple-database'
const simd = new SimpleDatabase('example.simd')
Adding table columns
simd.addColumn('id', 'number', {
unique: true
})
// or multi-adding columns
simd.addColumns([{
name: 'name',
type: 'string',
default: 'No Name',
unique: true
}, {
name: 'suranme',
type: 'string',
unique: true
}])
Insert, update and delete data from table
// inserting into table
simd.insert({
id: 12345,
name: 'Kio',
surname: 'gia'
})
// updating columns where "id" == 12345
simd.update({
surname: 'Gia'
}, {
column: 'id',
operand: 12345
})
// delete columns where "name" != Kio
simd.delete({
column: 'name',
operator: '!=',
operand: 'Kio'
})
Getting data
// selecting rows where "name" == Kio
simd.select({
column: 'name',
operand: 'Kio'
})
// returns []
// or selecting rows where unique column "id" == 12345
simd.selectByUnique({
column: 'id',
operand: 12345
})
// returns {} or undefined
// forEach loop
simd.forEach((row, rowIndex, rows) => {
// some operation
})
// or select all rows
simd.getAll
// returns []
Soon...
Soon...
FAQs
A simple module for storing and managing data
The npm package simdatabase receives a total of 0 weekly downloads. As such, simdatabase popularity was classified as not popular.
We found that simdatabase 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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.