Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

csv-db

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-db

Simple filebased database

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
28
decreased by-3.45%
Maintainers
1
Weekly downloads
 
Created
Source

CSV based Database

I was looking for a lightweight replacement for a database in one of my node.js workshops. This is the result: the data is stored in files. The rows are separated by new line characters and the fields are separated by semicolons. The first version of the database implementation was completely synchronous whereas the current version heavily relies on promises.

API

get(id)

Read either all data of a certain file or just one data set. The output is an array containing one or more objects, depending on what was fetched.

insert(newData)

Insert a new row to the database. Data is an object with column names as keys and the values to be inserted as - the values.

update(data, id)

Update an existing row. Data is an object containing ALL the values excluding the id. id is the identifier of the row to be updated.

delete(id)

Delete an existing row. id is the identifier of the row to be deleted.

Keywords

FAQs

Package last updated on 20 Feb 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc