
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
@amazon-codecatalyst/blueprint-component.issues
Advanced tools
This is a representation of a codecatalyst source repository.
In CodeCatalyst, you can monitor features, tasks, bugs, and any other work involved in your project. Each piece of work is kept in a distinct record called an issue. Each issue can have a description, assignee, status, and other properties, which you can search for, group and filter on. You can view your issues using the default views, or you can create your own views with custom filtering, sorting, or grouping. For more information about concepts related to issues, see Issues concepts and Quotas for issues.
The issue component generates a JSON representation of an issue. The component takes in an ID field and issue definition as input.
In your blueprint.ts
, file, add the following:
import {...} from '@amazon-codecatalyst/blueprint-component.issues'
import { Issue } from '@amazon-codecatalyst/blueprint-component.issues';
...
new Issue(this, 'myFirstIssue', {
title: 'myFirstIssue',
content: 'this is an example issue',
});
import { Issue } from '@amazon-codecatalyst/blueprint-component.issues';
...
new Issue(this, 'mySecondIssue', {
title: 'mySecondIssue',
content: 'this is an example high priority issue',
priority: 'HIGH',
});
import { Issue } from '@amazon-codecatalyst/blueprint-component.issues';
...
new Issue(this, 'myThirdIssue', {
title: 'myThirdIssue',
content: 'this is an example of a low priority issue with a label',
priority: 'LOW',
labels: ['exampleLabel'],
});
FAQs
This is a representation of a codecatalyst source repository.
The npm package @amazon-codecatalyst/blueprint-component.issues receives a total of 2,601 weekly downloads. As such, @amazon-codecatalyst/blueprint-component.issues popularity was classified as popular.
We found that @amazon-codecatalyst/blueprint-component.issues demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.