react-dynamodb-helper
Advanced tools
Comparing version
{ | ||
"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 @@ } |
87006
0.94%91
51.67%