
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
bedrock-node
Advanced tools
A full-featured Node wrapper for Amazon Bedrock with function calling.
This is a high-level Node library for Amazon Bedrock built on top of Amazon's officially supported @aws-sdk/client-bedrock-runtime.
It exposes easy methods for generating chat completions w/ optional function calling, generating embeddings, and generating images. The function calling solution is inspired by Langchain's function calling implementation on top of Anthropic Claude: https://js.langchain.com/docs/modules/model_io/models/chat/integrations/anthropic_functions.
yarn add bedrock-node
If you're running this inside of AWS Lambda, make sure that you add an inline policy to grant permission to the Bedrock service- you won't have to worry about configuring the access keys.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"bedrock:*"
],
"Resource": "*"
}
]
}
import { BedrockClient } from 'bedrock-node';
const bedrockClient = new BedrockClient({
region: 'us-east-1', // Defaults to 'us-east-1'
accessKey: '************', // Defaults to process.env.AWS_ACCESS_KEY_ID
secretAccessKey: '************', // Defaults to process.env.AWS_SECRET_ACCESS_KEY
sessionToken: '************', // Defaults to process.env.AWS_SESSION_TOKEN
});
export const bedrock = async () => {
const response = await bedrockClient({
messages: [
{
type: 'Assistant',
message: `You may only respond in the following XML shape:
<response>
<location type="string">
New York, NY
</location>
<temperature type="number">
81
</temperature>
</response>`
},
{
type: 'Human',
message: 'What is the weather in Miami, FL?'
},
{
type: 'Assistant',
message: '<response>'
},
]
});
return response;
}
{
"response": "\n <location type=\"string\">Miami, FL</location> \n <temperature type=\"number\">85</temperature>\n</response>",
"object": {
"location": "Miami, FL",
"temperature": 85
}
}
FAQs
A full-featured Node wrapper for Amazon Bedrock with function calling
We found that bedrock-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.