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

@fekit/url

v2.0.1

Published

一款 URL 网址传参操作插件,可以单个或批量的对网址 hash 或 search 参数进行增删改查操作。亮点是容错能力强,可批量操作,可以开启错误或无效参数自动过滤。

Downloads

46

Readme

@fekit/url

一款 URL 网址传参操作插件,可以单个或批量的对网址 hash 或 search 参数进行增删改查操作。亮点是容错能力强,可批量操作,可以开启错误或无效参数自动过滤。

索引

演示

https://plugins.fekit.cn/@fekit/url/

开始

下载项目:

npm i @fekit/url

参数

import UrlParam from '@fekit/url';

// 新建实例的参数
let myUrl = new UrlParam({
  type: '#' | '?', // {String}  必填,填写'#'则新建一个操作hash值的实例,填写'?'则新建一个操作search值的实例
  filter: true | false, // {Boolean} 选填,为true则开启无效参数纠错与过滤
});

// 操作网址时的参数
myUrl.set(
  opt, // {*} 可以是字符,也可以是数组也可以是对象
  urlString // {String} 指定网址,对当前页面的网址进行操作时不要填写此项
);

示例

import { hash, search } from '@fekit/url';

// 设置一条
hash.set({
  key: 'aaa',
  val: 111,
});

// 设置多条
hash.set([
  {
    key: 'bbb',
    val: 222,
  },
  {
    key: 'ccc',
    val: 333,
  },
]);

// 删除一条
hash.del('aaa');

// 删除多条
hash.del(['bbb', 'ccc']);

// 删除全部
hash.del('*');

// 获取一条
hash.get('aaa');

// 获取多条并以数组格式返回
hash.get(['bbb', 'ccc']);

// 获取多条并以对象格式返回
hash.get({
  a: 'aaa',
  bbb: 'bbb',
});

// 获取全部
hash.all();

// 是否有某一条?
hash.has('ddd');

// 操作search
// let myUrl = new McURL({
//   type: '?',
//   filter: true,
// });

// 增,删,改,查跟上面hash一模一样,省略...

// 操作不是当前页面的网址
let oldUrl = 'https://junbo.name?aaa=111&bbb=222&ccc=333';
// 获取一个网址中的一个参数属性值
let aaa = search.get('aaa', oldUrl);
console.log(aaa); // -> 111

let newUrl = search.set(
  [
    {
      key: 'ddd',
      val: 444,
    },
    {
      key: 'eee',
      val: 555,
    },
  ],
  oldUrl
);

console.log(newUrl); // -> https://junbo.name?aaa=111&bbb=222&ccc=333&ddd=444&eee=555

版本

v2.0.0 [Latest version]
1. TypeScript重构
2. hash参数区分路由和参数
v1.0.1
1. 兼容IE8,新增CMD方式使用。
新 mc-url 转到 @fekit/mc-url
v1.0.0
NPM包 mc-url 转到 @fekit/mc-url,版本重新开始!
v2.0.1 [Latest version]
1. 使用UMD方式。
v2.0.0
1. 重构成构造函数,可以new多个实例并设置为不同的主题同时使用。
2. 优化了新提示冲掉上一条提示时的性能与稳定性问题并让冲掉过程动画更平滑
3. 新增了一款主题mc-toast-ac
4. 文字内容入参名称msg改为text
5. 修复了一个当icon未设置时仍然生成了icon图标占位的小BUG
v1.0.3
1. 废除回调函数then的用法并新增了on事件群。on里面有show及hide回调
v1.0.2
1. 此版本除了模块化使用本插件,还将方法挂载在了window下的fekit对象下,除了模块化引用还可以直接用fekit.mcToast方法。
v1.0.1
1. 此版本精简了代码,取消了onshow和onhide,回调合并为一个then,可以通赤then回调的传参来判断是显示还是消失及其它一些操作。