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

tableware

v0.0.2

Published

Delicious PostgreSQL tables... always cooked fresh from JSON Schemas!

Downloads

7

Readme

tableware

Delicious PostgreSQL tables... always cooked fresh from JSON Schemas!

Install

$ npm install tableware --save

Basic usage

var Tableware = require('tableware')

var tableware = new Tableware()

// Ensure you've got PG_CONNECTION_STRING set, for example:
// PG_CONNECTION_STRING=postgres://postgres:postgres@localhost:5432/test_db

tableware.sync (
  {
    sourceDirs: [
      {
        path: '/my/json/schemas/myApp', // Where your JSON schema files live
        namespace: 'tableware_test' // Helps group/isolate these files        
      }
    ]
  },
  function (err) {
    // Database tables ready in a 'tableware_test' schema!
  }
)

Why?

If you've a bunch of JSON Schema files to describe the content of your JSON data, then good news: you've also got everything to create a great relational database to store your JSON docs in too!

"Erm... why not just throw everything at MongoDB, or use PostgreSQL's JSONB columns?"

In cases like this you've already got a schema... you know what to expect. It's probably a backward step to go schema- less. Yup, there's the brilliant Mongoose.js and similar... but is there a compelling reason to say "No!" to SQL?

That's were Tableware comes in.

With the minimum of fuss, Tableware will synchronize objects in a PostgreSQL database so that it can store documents adhering to 1 or more JSON schemas - but in a sane relational model. Tableware hopes to help you get the most out of the brilliant PostgreSQL... while still providing a warm-and-welcoming home for your JSON docs.

| Something in JSON Schema | Something in PostgreSQL | | -------------------------| ----------------------- | | Directory (or some other logical grouping) of JSON Schemas | Database schema | | JSON Schema file | Table | | properties | Columns | | A property that's an Array of an object | Child table - enforced with foreign key constraints | | required | NOT NULL constraint | | description | Table/Column comment |

"Sounds a bit brittle, what happens if my JSON Schema changes?"

Tableware uses reflection to study the current structure of your database and will issue all the necessary CREATE/ALTER statements to get things in-sync again. All DML statements run in a single all-or-nothing transaction, so no need for migration files either!

"That's great and everything, but I've still got to somehow get my nested JSON docs into and out-of those tables?"

Loads of cool projects for that!

Tests

To run the tests you'll need to set a PG_CONNECTION_STRING environment variable to point to a PostgreSQL database, for example:

PG_CONNECTION_STRING=postgres://postgres:postgres@localhost:5432/test_db

  • And you'll also need to have created that database already (e.g. test_db in the example string above)
$ npm test

License

MIT