GithubHelp home page GithubHelp logo

starchart's Introduction

Starchart

๐Ÿšง WARNING: Alpha software. Under heavy development. Breaking changes at anytime ๐Ÿšง

Starchart is an opinionated SDK for Azure Cosmos DB with baked in best practices for storing documents and relationships

Installation

npm install starchart

Typescript Quick Start

import { createClient } from "starchart";

const client = createClient({
  endpoint: "https://your-cosmos-endpoint.cosmos.azure.com",
  key: "your cosmos key"
});

const container = client.database("production").container("todos");

async function main() {
  // Create a new todo
  const todo = await container.save({
    title: "Try out Starchart",
    state: "started"
  });
  todo.state = "done";

  // Update a todo
  await container.save(todo);

  // Delete a todo
  await container.destroy(todo);
}

main();

A complete backend for TodoMVC can be found in examples/todo-backend that shows the full API surface

Why?

Many newcomers to NoSQL databases find it difficult to model data. Developers with SQL backgrounds will rely on patterns that are anti-patterns in NoSQL:

  • SQL patterns

    • Table per entity
    • Normalized
    • Retrieve data with single complex query
  • NoSQL patterns

    • Single table for all entities
    • Denormalized
    • Retrieve data with multiple simple queries

Rather than force a developer to learn these new patterns upfront, Starchart bakes them straight into the SDK. It is always possible to fall back to the standard @azure/cosmos SDK for full control.

Contributing

Contributions welcome!

Developement

npm install - Install all production and development dependencies

Testing

npm test - Runs test locally against a simulated Cosmos backend

All PRs will run tests on Github Actions

starchart's People

Contributors

southpolesteve avatar

Stargazers

 avatar

Watchers

 avatar  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.