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

ember-http-mocks-rethinkdb-adapter

v0.1.3

Published

Adds a database adapter for ember-cli http-mocks (dev api w/ JSON document storage)

Downloads

5

Readme

Ember HTTP Mocks RethinkDB Adapter

See Ember CLI mocks-and-fixtures documentation for information on how Ember CLI supports generators for http-mocks.

This addon extends the behavior of an http-mock by adding an adapter to a document store using RethinkDB. This is useful when you want to develop using live data that can be queried, e.g. with parameters like sortBy, limit, order, withFields, offset.

Below is an example request URI using a query supported by the rethinkdb_adapter

  • http://localhost:4200/api/posts?limit=10&order=desc&offset=0&sortBy=date&withFields=title

Using this addon requires a local installation of RethinkDB and adapter.

For more information on using ember-cli, visit ember-cli.com.

Installation

npm install --save-dev rethinkdb_adapter
ember install:addon ember-http-mocks-rethinkdb-adapter

Generator: http-mocks-db

This addon uses Ember CLI generators to create a mock that is backed up by a document store db, i.e. RethinkDB

ember generate http-mocks-db `your-resource-name-pluralized`

For example use ember generate http-mocks-db posts for a collection of post models. And with Ember data return return this.store.find('post', { sortBy: 'date', order: 'desc', limit: 100 }) from your route's model hook. After creating some records with the db administration tools, then use your new endpoint backed by your db at http://localhost:4200/api/posts

After generating a db backed http-mock it may help to restart your app with ember server.

For more info on generators use ember help generate

RethinkDB

Here is a Ten-minute guide on RethinkDB

For developers on a mac, install with Homebrew, here is a link to a shell script.

brew update && brew install rethinkdb

Starting your db

See the 30-second quickstart for how to start and use the db.

To start the db (and create a db, if one doesn't exist), in the root of your project use the command rethinkdb

Once you've started your db try out the administration-tools at http://localhost:8080

Back up your data

See the Back up your data guide for steps to import and export data.

Perhaps create a data directory in your project to keep db dumps.