Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
gitlab-commando
Advanced tools
A TypeScript library implementing command pattern with undo/redo functionality for interacting with the GitLab API.
gitlab-commando
is a TypeScript library that implements the command pattern with undo/redo functionality specifically for interacting with the GitLab API. This library provides a robust and flexible way to perform various GitLab operations programmatically while supporting undoable actions for safer batch operations.
npm i gitlab-commando
Here is how you can use the gitlab-commando
to interact with the GitLab API:
import { GitLabSession } from 'gitlab-commando';
const gitlabSession = new GitLabSession('your-instance-url');
// Create a new project
gitlabSession.createProject('your-token', 'New Project', 'namespaceId', ['topic1', 'topic2'], 'master').then(response => {
console.log('Project created:', response);
}).catch(error => {
console.error('Error creating project:', error);
});
// Close a merge request
gitlabSession.closeMergeRequest('your-token', 'project-id', 'merge-request-iid').then(response => {
console.log('Merge request closed:', response);
}).catch(error => {
console.error('Error closing merge request:', error);
});
// Undo the commands above
gitlabSession.rollback();
FAQs
A TypeScript library implementing command pattern with undo/redo functionality for interacting with the GitLab API.
We found that gitlab-commando 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.