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

@goodcastle/api-plugin-dummy-data

v1.0.10

Published

Generates dummy data for Reaction Commerce

Downloads

1

Readme

How do you can publish this package?

  • make the changes you want
  • Prapare your commit and tag the new version. Follow the example below
  • git add . && git commit -m "message commit" && npm version 1.0.4
  • The new tag is created automatically when you run "npm version 1.0.4" so you have to change the version.

reaction-dummy-data

npm (scoped)

Generates dummy data (products, tags & orders) for Reaction Commerce.

How to use

First, install the package in your project's reaction (API) directory:

npm install --save-dev @goodcastle/reaction-dummy-data

Then, register the plugin in your project's reaction/src/registerPlugins.js, calling the function at the end of the file:

import registerDummyData from "@goodcastle/reaction-dummy-data/index.js";

// Built-in plugin register calls go here

await registerDummyData(app);

User interface

If you prefer to have a user interface in your reaction-admin rather than making GraphQL calls manually, use this plugin together with reaction-dummy-data-ui.

GraphQL API

Once the plugin is registered, you get access to the following GraphQL mutations. Call these from the GraphQL Playground at http://localhost:3000/graphql.

As you can see in the example variables, there is no need to encode the shopId. This is a developer tool, and we want to keep things straightforward.

Create tags and products

mutation loadProductsAndTags($input: LoadProductsAndTagsInput!) {
    loadProductsAndTags(input: $input) {
        productsCreated,
        tagsCreated
    }
}

Call with the following variables:

{
    "input": {
        "shopId": "kspBu62vAyXnnb2v6",
        "desiredTagCount": 15,
        "desiredProductCount": 20
    }
}

Add images to all products

mutation loadProductImages($input: LoadProductImagesInput!) {
    loadProductImages(input: $input) {
        wasDataLoaded
    }
}

Call with the following variables:

{
    "input": {
        "shopId": "kspBu62vAyXnnb2v6"
    }
}

Create orders

mutation loadOrders($input: LoadOrdersInput!) {
    loadOrders(input: $input) {
        ordersCreated
    }
}

Call with the following variables:

{
    "input": {
        "shopId": "kspBu62vAyXnnb2v6",
        "desiredOrderCount": 15
    }
}

Remove all data (armageddon)

Beware: this will erase the content of the Products, Catalog, Tags and Orders collections!

mutation removeAllData($input: RemoveDataInput!) {
    removeAllData(input: $input) {
        wasDataRemoved
    }
}

Call with the following variables:

{
    "input": {
        "shopId": "kspBu62vAyXnnb2v6"
    }
}

Authentication

Don't forget to use an Authorization HTTP header to authenticate your API calls. Example:

{
    "Authorization": "skwL_8jUOkmom7wW_se6_XgfSBtBrUBSR9UL-CUq74A.fwTZ8_G2QTMPf83O6jAOtYxyEU1TYV6spm8abPENutg"
}

You can get the value for the Authorization header in the reaction-admin UI (http://localhost:4080). By using your browser's network analyzer in the devtools, look for any recent POST call to /graphql or /graphql-beta and copy the value for Authorization in the request headers.

A note on performance

This plugin is a developer tool and hasn't necessarily been built with optimal performance in mind. It will make your GraphQL server hang while generating products, tags, images or orders. These mutations will most likely take time to finish because of the necessary use of many awaits in the code.

We hope that the job-queue plugin will soon be available as an NPM package, enabling us to simply register jobs instead of having so much synchronous code in mutation resolvers. Until then, PRs are obviously welcome to enhance performance!