I was investigating why this node wasn't being listed on flows.nodered.org
The problem is your package.json lists the DynamoDB file as DynamoDB.js but the actual file is Dynamodb.js. That means the flow library believes your node is missing a file so it refuses to list it.
If you want it to get indexed, you'll need to either fix your package.json or rename the file to match what is in package.json.
Hi,
I was investigating why this node wasn't being listed on flows.nodered.org
The problem is your package.json lists the DynamoDB file as
DynamoDB.js
but the actual file isDynamodb.js
. That means the flow library believes your node is missing a file so it refuses to list it.If you want it to get indexed, you'll need to either fix your package.json or rename the file to match what is in package.json.
Nick