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.
@placetopay/sidebar-menu
Advanced tools
is a component that can be reused in different Vue projects with configurable properties and tailwind styles
# git clone
git clone git@bitbucket.org:placetopay/sidebar-menu.git
For development
npm install
npm run dev
Build package
npm run build
# install via npm
npm i @placetopay/sidebar-menu
// register the plugin on vue
import SidebarMenu from '@placetopay/sidebar-menu'
import '@placetopay/sidebar-menu/dist/sidebar-menu.scss'
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({})
//register globally
Vue.use(SidebarMenu , { store })
// add to your base template
//Default properties
<sidebar-menu></sidebar-menu>
//With properties
<sidebar-menu
:menu-items="[]"
:sidebar-config="[]"
>
</sidebar-menu>
Sidebar menu items
{
data: [
// Sidebar parent menu (required)
{
link: '#',
name: 'Transactions',
icon: 'fa-cash-register',
},
{
// Sidebar parent menu (required)
link: '#',
name: 'Dashboard',
icon: 'fa-chart-line',
// If you have submenus, you must declare them as follows
submenus: [
{
link: '#',
name: 'Generals',
icon: 'bx-grid-alt',
},
{
link: '#',
name: 'Temas personalizados',
icon: 'bx-grid-alt',
}
]
}
]
}
Sidebar menu styles
{
data: [{
sidebarOpenLogo: '',
// logo sidebar cloded
sidebarClosedLogo: '',
// color sidebar
bgColor: 'white',
// color sidebar border
bgColorSidebarBorder: 'black',
// color text of filter search
colorInput: 'black',
// background color of input
bgColorInput: 'var(--primary-color-200)',
}]
}
FAQs
A configurable sidebar menu in many projects
The npm package @placetopay/sidebar-menu receives a total of 0 weekly downloads. As such, @placetopay/sidebar-menu popularity was classified as not popular.
We found that @placetopay/sidebar-menu demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.