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.
github-api-widget
Advanced tools
Show github select user principal info layout
npm install github-api-widget
In src/styles.css
@import "./../node_modules/github-api-widget/lib/assets/styles/styles.css";
With default components (use search github user)
If not use search component.
Create component (github.component.ts) and copy/paste this code component
import { EMPTY } from 'rxjs';
import { Component, Input, OnInit } from '@angular/core';
import { User } from 'github-api-widget/lib/widgets/user/user.interface';
import * as api from 'proyecto-1b-api-github';
@Component({
selector: 'app-github',
templateUrl: './github.component.html',
styleUrls: ['./github.component.css']
})
export class GithubComponent implements OnInit {
user: User = null;
error: boolean;
@Input() searchUser: string;
ngOnInit() {
console.log(this.searchUser);
this.takeUserData();
}
takeUserData() {
console.log(this.searchUser);
if (this.searchUser !== '' && this.searchUser !== undefined) {
api.obtenerDatosDeUsuario(this.searchUser)
.then(
(respuesta: User) => {
if (respuesta.login === undefined) {
console.log('no data');
this.error = true;
this.user = null;
} else {
console.log(respuesta);
this.user = respuesta;
this.error = false;
}
}
).
catch((error: any) => {
console.log(error);
console.log('error');
this.user = null;
this.error = true;
return EMPTY;
});
} else {
this.user = null;
this.error = true;
}
}
}
In html template (github.component.html) you must add:
<app-github searchUser="<user github you want to show info>"></app-github>
<app-github searchUser="mugan86"></app-github>
In app.component.html template you must add
[user]="user"></github-api-user>
<github-api-error *ngIf="error"></github-api-error>```
FAQs
[![npm version](https://badge.fury.io/js/github-api-widget.svg)](https://badge.fury.io/js/github-api-widget) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) Show github select user principal inf
The npm package github-api-widget receives a total of 0 weekly downloads. As such, github-api-widget popularity was classified as not popular.
We found that github-api-widget 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.
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.