Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dynamodb-admin

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynamodb-admin - npm Package Compare versions

Comparing version 1.9.2 to 1.10.0

views/get.ejs

35

index.js

@@ -93,2 +93,37 @@ const express = require('express')

app.get('/tables/:TableName/get', (req, res, next) => {
const TableName = req.params.TableName
if (req.query.hash) {
if (req.query.range) {
return res.redirect(`/tables/${TableName}/items/${req.query.hash}${encodeURIComponent(',')}${req.query.range}`)
} else {
return res.redirect(`/tables/${TableName}/items/${req.query.hash}`)
}
}
describeTable({TableName}).then((description) => {
const hashKey = description.Table.KeySchema.find((schema) => {
return schema.KeyType === 'HASH'
})
if (hashKey) {
hashKey.AttributeType = description.Table.AttributeDefinitions.find((definition) => {
return definition.AttributeName === hashKey.AttributeName
}).AttributeType
}
const rangeKey = description.Table.KeySchema.find((schema) => {
return schema.KeyType === 'RANGE'
})
if (rangeKey) {
rangeKey.AttributeType = description.Table.AttributeDefinitions.find((definition) => {
return definition.AttributeName === rangeKey.AttributeName
}).AttributeType
}
res.render('get', Object.assign({},
description, {
hashKey,
rangeKey
}
))
})
})
app.get('/tables/:TableName', (req, res, next) => {

@@ -95,0 +130,0 @@ const TableName = req.params.TableName

2

package.json
{
"name": "dynamodb-admin",
"version": "1.9.2",
"version": "1.10.0",
"description": "GUI for DynamoDB. Useful for local development.",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc