How to use the dummy-json.seed function in dummy-json

To help you get started, we’ve selected a few dummy-json examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github node-red / node-red-nodes / function / datagenerator / datagenerator.js View on Github external
node.on("input", function(msg) {
            if (msg.seed) { dummyjson.seed = msg.seed; }
            try {
                var value = dummyjson.parse(node.template, {mockdata: msg});
                if (node.syntax === "json") {
                    try { value = JSON.parse(value); }
                    catch(e) { node.error(RED._("datagen.errors.json-error")); }
                }
                if (node.fieldType === 'msg') {
                    RED.util.setMessageProperty(msg,node.field,value);
                }
                else if (node.fieldType === 'flow') {
                    node.context().flow.set(node.field,value);
                }
                else if (node.fieldType === 'global') {
                    node.context().global.set(node.field,value);
                }
                node.send(msg);

dummy-json

Dummy JSON mock data generator for Node.js

MIT
Latest version published 2 years ago

Package Health Score

48 / 100
Full package analysis

Similar packages