Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
vue-nxp-key-management-plugin
Advanced tools
vue-nxp-key-management-plugin is a vueJs plugin for managing institution secret keys.
vue-nxp-key-management-plugin is a vueJs plugin for managing institution secret keys.
npm i vue-nxp-plugin
npm i vue-nxp-key-management-plugin --save
{
"vue-nxp-key-management-plugin": "0.2.6"
}
NB :
Add following code to your package.json in order to download the plugin from nexus repository.
{
"publishConfig" : {
"registry": "https://artifact-repos.dev.s2m.ma/repository/npm-hosted/"
}
}
{
"vue-nxp-key-management-plugin": "0.0.134"
}
After Installing the Plugin, Use it globally in your main.js file.
import EaasUiPlugin from "vue-nxp-key-mangement-plugin/dist/vue-nxp-key-mangement-plugin.common";
Vue.use(EaasUiPlugin,{ eaasUrl : process.env.VUE_APP_NXP_EAAS_URL});
//Provide eaasUrl, which is an environment variable that contains vault-service microservice url.
In your i18n file add audit trail plugin en and fr files as follow :
setTimeout(()=>{
messages.en = {...Vue.prototype.$eaas_messages.en ,...messages.en}
messages.fr = {...Vue.prototype.$eaas_messages.fr ,...messages.fr}
},0)
//$eaas_messages is a global variable exposed by key management plugin..
<template>
<div>
<NxpKeyManagementSpace @close="close()" />
</div>
</template>
<script>
import axios from "axios";
export default {
name: "KeyManagement",
provide :{
axios
},
methods: {
close(){
//use router for example to quit the view
this.$router.back();
}
}
}
</script>
<style scoped>
</style>
NB :
Provide Axios to key Management Plugin As Below and institutionId as Router Query as follows :
//this.$router.push({ path: "/yourPath", query : { institution: {institutionId : "000001"}}});
@Copyright S2M 2022.
FAQs
vue-nxp-key-management-plugin is a vueJs plugin for managing institution secret keys.
The npm package vue-nxp-key-management-plugin receives a total of 0 weekly downloads. As such, vue-nxp-key-management-plugin popularity was classified as not popular.
We found that vue-nxp-key-management-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.