Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
sails-hook-adminpanel-flexible
Advanced tools
This is an extension of original repository.
What were added?
ability edit array and json format
use type string for these types
Admin panel generator fro Sails.js applications v0.11+
This hook is under active development. Please be careful lot of functionality will be added. And some configs could change from version to version
To install this hook you will need to run:
npm install --save sails-hook-adminpanel-flexible
Then you will need to create a config file for admin panel generator into config/adminpanel.js
This is example of this file:
'use strict';
module.exports.adminpanel = {
instances: {
users: {
title: 'Users',
model: 'User',
list: {
fields: {
id: 'ID',
email: 'Email',
active: 'Active',
admin: 'Admin',
createdAt: 'Created'
}
},
edit: {
fields: {
email: 'Email',
active: {
title: 'Active'
},
admin: {
title: 'Admin',
disabled: true
}
}
}
}
}
};
And your admin panel will be accesible under: http://yoururl.com/admin/users
Take a look into docs
folder. There are lot of docs about configuration and usage.
This repo contains a hook, one of the building blocks Sails is made out of.
The versioning of a hook closely mirrors that of the Sails version it depends on. While the "patch" version (i.e. the "Z" in "X.Y.Z") will normally differ from that of Sails core, the "minor" version number (i.e. the "Y" in "X.Y.Z") of this hook is also the minor version of Sails for which it is designed. For instance, if a hook is version 0.11.9
, it is designed for Sails ^0.11.0
(that means it'll work from 0.11.0 all the way up until 0.12.0).
Yes. For now only Jade.
Yes, see the v0.11 migration guide. You probably won't need to change anything unless you were extensively using the old Socket.io v0.9 configuration.
MIT
#Contributors Svyatoslav Dardalan
FAQs
Implements the basic admin panel for Sails
The npm package sails-hook-adminpanel-flexible receives a total of 0 weekly downloads. As such, sails-hook-adminpanel-flexible popularity was classified as not popular.
We found that sails-hook-adminpanel-flexible 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.