New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

coreio

Package Overview
Dependencies
Maintainers
3
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coreio

List and Model framework

  • 0.8.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by50%
Maintainers
3
Weekly downloads
 
Created
Source

CoreIO

CoreIO is a data model framework for backend and frontend.

Usage

CoreIO knows models and lists. Lists are simply collections of models. Each model represents a dataset.

import CoreIO from 'coreio'

const myModel = new CoreIO.Model('mymodel')

// store data in a model
myModel.set({
  title: 'Test item',
  description: 'Some test content...'
})

// get all data from a model
const data = myModel.get()

// get a specific dataset
const title = myModel.get('title')

Model

class Model(obj options)

List

class List (obj options)

Keywords

FAQs

Package last updated on 25 Oct 2022

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