npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

microrole

v0.0.1

Published

通过vue指令,管理or更改权限元素属性(类名)

Downloads

11

Readme

microrole

通过vue指令,管理or更改权限元素属性(类名)

注:必须要有vue-router

使用

//in main.js
app.use(vRole('key'))// localstorage key.you have to save RoleInfo before the step

在组件中控制样式信息

  <div id="aboutBlock" v-role="'aboutBtn'"></div>

之后更改该组件类名,就可以直接在权限信息中更改,而无需更改代码or进入CI/CD流程。

ps:个人建议使用tailwindcss的cdn配合chrome 插件,只需写一个小的popup或contenttype中加dom,然后对指定元素添加类名,tailwindcss会动态添加css规则,就可以可视化,看到更改的效果,然后用这个信息(元素类名信息和css新规则信息)更新一下roleinfo 和 css就好

可视化工具

输入路由配置,爬取项目中所有标识/权限元素,把每个元素截图并标识,并把元素信息记录至json,省下管理成本

const helper = require("microrole/helper");
var menu = [
  { name: "About", path: "about" },
  { name: "Test", path: "about/test" },
];
helper.getRoleInfo(menu, "http://localhost:3000",'png');