New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-dynamodb-helper

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-dynamodb-helper - npm Package Compare versions

Comparing version

to
1.0.5

2

package.json
{
"name": "react-dynamodb-helper",
"version": "1.0.4",
"version": "1.0.5",
"description": "A helper component to interface with dynamodb using the AWS SDK, directly from React",

@@ -5,0 +5,0 @@ "author": "superflows-dev",

@@ -19,3 +19,6 @@ # react-dynamodb-helper

## Note
### AWS key pair needs to have DynamoDb privileges
## Usage

@@ -32,3 +35,3 @@

useEffect(() => {
async function getData() {

@@ -52,2 +55,30 @@ var params = {

useEffect(() => {
async function updateData() {
var params = {
TableName: "Account_Credentials",
Key : {
"email" : 'hru****@***ies.com',
},
UpdateExpression: "set #otp = :otpVal",
ExpressionAttributeNames: {
"#otp": "otp",
},
ExpressionAttributeValues: {
":otpVal": "1212"
}
};
// aws_secret and aws_access_key need to have
// dynamodb access
let result = await DynamoDB.updateData("aws_region", "aws_secret", "aws_access_key", params)
}
getData();
}, [])
return <div>Hello DynamoDB Helper</div>

@@ -54,0 +85,0 @@ }