![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
cloudformation-http-resource
Advanced tools
An aws-cdk construct for calling HTTP API during CloudFormation stack update.
The Http
resource provides 3 callbacks: onCreate
, onUpdate
and onDelete
.
The following example will issue a POST request when a Some API
resource creates:
import * as cdk from '@aws-cdk/core';
import { Http } from "cloudformation-http-resource";
export class ExamplesStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
const simpleOk = new Http(this, 'Some API', {
onCreate: {
method: 'POST',
url: 'https://example.org/',
headers: {
'content-type': 'application/json'
},
body: {
test: 123,
nested: [{
name: 'Piotr'
}]
}
}
});
}
}
You can access response data easily and e.g. put it into stack outputs like so:
new CfnOutput(this, 'Response body test field', {
description: "Response body test field",
value: simpleOk.getResponseField("body.test")
})
new CfnOutput(this, 'Response header', {
description: "Location of the resource",
value: simpleOk.getResponseField("headers.location")
})
new CfnOutput(this, 'Response status code', {
description: "Status code",
value: simpleOk.getResponseField("statusCode")
})
You can call APIs that require authentication tokens using SecretsManager:
import { Http, HttpCall } from "cloudformation-http-resource";
...
const secret: secretmanager.ISecret = getOrCreateSecret()
const apiCall: HttpCall = {
url: 'https://example.org/',
method: 'PUT',
headers: {
Authorization: `Bearer ${secret.secretValue}`
},
body: {
secret: secret.secretValue,
}
};
const includeSecret = new Http(this, 'SecretHttpCall', {
onCreate: apiCall,
onUpdate: apiCall
})
FAQs
Cloudformation resource to call any http API
We found that cloudformation-http-resource 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.