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.
v-github-activity
Advanced tools
Componente Vue.js para mostrar la actividad de github.
Puedes encontrar algunos ejemplos aquí
npm install v-github-activity
v-avatar es un modulo UMD, por lo que puede ser utilizado en tanto en una instancia de Vue como en Nuxt como en un entorno non-modular donde githubFeed
sera registrada como variable global.
<template>
<div>
<github-feed login="amaury-tobias"/>
</div>
</template>
<script>
import githubFeed from 'v-github-activity'
export default {
components: {
githubFeed
}
}
</script>
import Vue from 'vue'
import githubFeed from 'v-github-activity'
Vue.use(githubFeed)
./plugins/githubActivity.js
import Vue from 'vue'
import githubFeed from 'v-github-activity'
Vue.use(githubFeed)
nuxt.config.js
module.exports = {
plugins: ['~/plugins/githubActivity.js']
}
*.vue <template>
<no-ssr>
<github-feed login="amaury-tobias" />
</no-ssr>
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://unpkg.com/v-github-activity"></script>
</head>
<body>
<div id="app">
<github-feed login="amaury-tobias" />
</div>
<script>
var app = new Vue({
el: '#app',
components: {
githubFeed
}
})
</script>
</body>
</html>
Name | Required | Default | Type | Description |
---|---|---|---|---|
login | Y | - | String | GitHub username / Nombre de usuario de GitHub. |
# install dependencies
npm install
# serve whith hot reload al localhost:8080
npm run serve
# build
npm run build
npm test
Released under the MIT License.
Rollup
axios
using fetch
FAQs
Componente Vue para mostrar la actividad reciente de github
The npm package v-github-activity receives a total of 1 weekly downloads. As such, v-github-activity popularity was classified as not popular.
We found that v-github-activity 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.