Coder Social home page Coder Social logo

fesp21 / watermelondb Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nozbe/watermelondb

0.0 2.0 0.0 3.72 MB

๐Ÿ‰ Next-gen database for powerful React and React Native apps that scales to 10,000s of records and remains fast โšก๏ธ

Home Page: https://watermelondb.now.sh

License: MIT License

JavaScript 53.06% Kotlin 4.84% Python 0.34% Swift 5.22% Objective-C 36.41% Ruby 0.05% C 0.02% Shell 0.06%

watermelondb's Introduction

WatermelonDB

Next-generation React database

Build powerful React and React Native apps that scale from hundreds to tens of thousands of records and remain fast

MIT License CI Status npm

WatermelonDB
โšก๏ธ Launch your app instantly no matter how much data you have
๐Ÿ“ˆ Highly scalable from hundreds to tens of thousands of records
๐Ÿ˜Ž Lazy loaded everything. Only load data you need
โœจ Reactive API with RxJS
๐Ÿ“ฑ Supports iOS, Android, and the web
โš›๏ธ Made for React. Easily plug data into components
โฑ Fast. Async. Multi-threaded. Highly cached.
๐Ÿ”— Relational. Built on rock-solid SQLite foundation
โš ๏ธ Statically typed with Flow
๐Ÿ”„ Offline-first. (Plug in your own sync engine)

Why Watermelon?

WatermelonDB is a new way of dealing with user data in React Native and React web apps.

It's optimized for building complex applications in React Native, and the number one goal is real-world performance. In simple words, your app must launch fast.

For simple apps, using Redux or MobX with a persistence adapter is the easiest way to go. But when you start scaling to thousands or tens of thousands of database records, your app will now be slow to launch (especially on slower Android devices). Loading a full database into JavaScript is expensive!

Watermelon fixes it by being lazy. Nothing is loaded unless requested. And since all querying is performed directly on the rock-solid SQLite database on a separate native thread, most queries resolve in an instant.

But unlike using SQLite directly, Watermelon is fully observable. So whenever you change a record, all UI that depends on it will automatically re-render. For example, completing a task in a todo app will re-render the task component, the list (to reorder), and all relevant task counters.

React Native EU: Next-generation React Databases WatermelonDB Demo

๐Ÿ“บ Next-generation React databases
(a talk about WatermelonDB)

โœจ Check out the Demo

Usage

Quick (over-simplified) example: an app with posts and comments.

First, you define Models:

class Post extends Model {
  @field('name') name
  @field('body') body
  @children('comments') comments
}

class Comment extends Model {
  @field('body') body
  @field('author') author
}

Then, you connect components to the data:

const Comment = ({ comment }) => (
  <View style={styles.commentBox}>
    <Text>{comment.body} โ€” by {comment.author}</Text>
  </View>
)

// This is how you make your app reactive! โœจ
const enhance = withObservables(['comment'], ({ comment }) => ({
  comment: comment.observe()
}))
const EnhancedComment = enhance(Comment)

And now you can render the whole Post:

const Post = ({ post, comments }) => (
  <View>
    <Text>{post.name}</Text>
    <Text>Comments:</Text>
    {comments.map(comment =>
      <Comment key={comment.id} comment={comment} />
    )}
  </View>
)

const enhance = withObservables(['post'], ({ post }) => ({
  post: post.observe(),
  comments: post.comments.observe()
}))

The result is fully reactive! Whenever a post or comment is added, changed, or removed, the right components will automatically re-render on screen. Doesn't matter if a change occured in a totally different part of the app, it all just works out of the box!

โžก๏ธ Learn more: see full documentation

Contributing

If you have comments, complaints, or ideas for improvements, feel free to open an issue or a pull request! See Contributing guide for details about project setup, testing, etc.

If you make or are considering making an app using WatermelonDB, please let us know!

Author and license

WatermelonDB was created by @Nozbe. Main author and maintainer is Radek Pietruszewski.

Contributors: @mobily, @kokusGr, @rozPierog, @rkrajewski, @domeknn, @Tereszkiewicz and more.

WatermelonDB is available under the MIT license. See the LICENSE file for more info.

watermelondb's People

Contributors

radex avatar rozpierog avatar mobily avatar greenkeeper[bot] avatar panr avatar sebastian-schlecht avatar rkrajewski avatar kokusgr avatar bsr203 avatar flettling avatar imgbotapp avatar

Watchers

spigity avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.