![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Simple persistence for rapid prototyping. Powered by levelup.
This is my first Node.js module. Currently, the module is in the very early stages of development. Implementation of the API is ongoing. Take note: this module is NOT production ready.
var magpie = require('magpie'),
db = magpie('./db');
var theOatmealBook = {
title: "How to Tell If Your Cat Is Plotting to Kill You",
author: "TheOatmeal.com"
};
db.create(theOatmealBook, function(error, record) {
// Returns:
// {
// "id": "7f5d532b-8bfe-42fd-a1d3-8272e8aa7e3f",
// "title": "How to Tell If Your Cat Is Plotting to Kill You",
// "author": "TheOatmeal.com",
// "createdOn": "2013-05-10T20:30:25.342Z"
// }
});
Magpie is happy to generate IDs for you via node-uuid's uuid.v4()
method. If you'd like to supply your own IDs, go for it. Just include an id
property on your data
object.
Get all records:
db.get(function(error, records) {
// Returns:
[{
"id": "7f5d532b-8bfe-42fd-a1d3-8272e8aa7e3f",
"title": "How to Tell If Your Cat Is Plotting to Kill You",
"author": "TheOatmeal.com",
"createdOn": "2013-05-10T20:30:25.342Z"
}, {
...
}]
});
Get a record by ID:
db.get("7f5d532b-8bfe-42fd-a1d3-8272e8aa7e3f", function(error, record) {
// Returns:
{
"id": "7f5d532b-8bfe-42fd-a1d3-8272e8aa7e3f",
"title": "How to Tell If Your Cat Is Plotting to Kill You",
"author": "TheOatmeal.com",
"createdOn": "2013-05-10T20:30:25.342Z"
}
});
Get records by author using a query object:
var query = {
author: "TheOatmeal.com"
};
db.get(query, function(error, record) {
// Returns:
{
"id": "7f5d532b-8bfe-42fd-a1d3-8272e8aa7e3f",
"title": "How to Tell If Your Cat Is Plotting to Kill You",
"author": "TheOatmeal.com",
"createdOn": "2013-05-10T20:30:25.342Z"
}
});
var theOatmealBook = {
"id": "7f5d532b-8bfe-42fd-a1d3-8272e8aa7e3f",
"title": "How to Tell If Your Cat Is Plotting to Kill You",
"author": "TheOatmeal.com",
"isbn10": "1449410243",
"createdOn": "2013-05-10T20:30:25.342Z"
}
db.update(theOatmealBook, function(error, record) {
// Returns
{
"id": "7f5d532b-8bfe-42fd-a1d3-8272e8aa7e3f",
"title": "How to Tell If Your Cat Is Plotting to Kill You",
"author": "TheOatmeal.com",
"isbn10": "1449410243",
"createdOn": "2013-05-10T20:30:25.342Z",
"updatedOn": "2013-05-11T12:45:50.700Z"
}
});
The MIT License (MIT)
Copyright (c) 2013 C. Corey Capel
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Simple persistence for rapid prototyping. Powered by levelup.
The npm package magpie receives a total of 0 weekly downloads. As such, magpie popularity was classified as not popular.
We found that magpie 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.