npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lastorage

v0.1.3

Published

Data storage for React Native use AsyncStorage

Downloads

1

Readme

lastorage

Data storage for React Native use AsyncStorage

Installation

npm install lastorage

or

yarn add lastorage

Add AsyncStorage library

npm install @react-native-async-storage/async-storage
# or
yarn add @react-native-async-storage/async-storage

On iOS, use CocoaPods to add the native RNAsyncStorage to your project:

npx pod-install

View more documents in AsyncStorage

Usage

Methods

  1. Import
  2. Create And Init Database
  3. Drop
  4. Insert Row
  5. Insert Multiple Rows
  6. Get All Rows
  7. Find Rows
  8. Count Rows
  9. Limit Rows
  10. Find One Row
  11. Update Row
  12. Delete Row
  13. Text Search

Import

import Lastorage from "lastorage";

Create And Init Database

// table name `todos`
const todos = new Lastorage('todos');
todos.init(() => {
  todos.find();
});

// you should call the init method when you want get data from local storage

Drop

todos.drop();

Insert Row

todos.insert({
  title: 'Task 1',
  body: 'Body of task 1',
  status: 1,
});

// the insert method return _id

Insert Multiple Rows

todos.insertMany([
  {
      title: 'Task 1',
      body: 'Body of task 1',
      status: 1,
  },
  {
      title: 'Task 2',
      body: 'Body of task 2',
      status: 1,
  },
]);

// the insertMany method return array with _id

Get All Rows

todos.find();

Find Rows

todos.find({ title: 'Task 1' });

Count Rows

todos.count();

Limit Rows

todos.limit(2);

Find One Row

todos.findOne({ name: 'Task 1' });

Update Row

todos.update({ _id: '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed' }, { name: 'Task 1 updated' })

Delete Row

todos.remove({ name: 'Task 1' });

Text Search

todos.find({ name: /Task/ });

View Example

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT