
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy 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 0 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.