
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
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
<github-api-user *ngIf="user" [user]="user">
<github-api-error *ngIf="error">
FAQs
[](https://badge.fury.io/js/github-api-widget) [](https://opensource.org/licenses/MIT) Show github select user principal inf
The npm package github-api-widget receives a total of 1 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 researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.