
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
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
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.