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

wsx-js-tool-hi

v1.2.5

Published

common methods with babel & libraryTarget:umd 任何模块引入形式都支持/ main:入口文件 路径修改/

Downloads

5

Readme

发布

npm login npm who i am npm publish 先build,再该版本号,再npm publish

工程说明:

package.json
"main": "index.js",  -- 入口函数
"version": "2.0.1", -- npm publish 的版本号 
"name": "wsx-js-tool", -- 下载下来的npm文件夹的名字



使用安装: --关联工程:wsx-js-tool-useExample
npm install [email protected]
import wsxJsTool from 'wsx-js-tool';
wsxJsTool.getUrlParamByName();
wsxJsTool.DateFuc.getToday();

工具类说明

--- commonMethods.js
getUrlParamByName -- 通过param的那么获取window.location.hash?后面的参数

--- date.js
DateFuc.getToday
DateFuc.getDaysAgo
DateFuc.getFormatDate -- 将Date格式 或 时间戳格式的时间 转成:'2020-11-24'

webpack 压缩打包

v1.0.0 通过index.js 作为入口,未打包
v2.0.0 通过webpack打包成wsx-js-tool单文件,作为入口 供第三方引入
 ---npm install -D babel-loader @babel/core @babel/preset-env webpack
    (index.js :es6module export default x 或 commonjs module.exports=)
    config.output.library: `${pkg.name}`,
    config.output.libraryTarget: "umd" // 适用于任何形式的模块引入
    引用该工具包,也可以使用es6 module (import x from 'xx');
 ---npm i -D uglifyjs-webpack-plugin
    to minify js file
 ---install下来的工具包 包括:dist打包文件  /  wsx-js-tool整个工程文件  (TODO:install 希望只下载dist, https://blog.csdn.net/BLUE_JU/article/details/111360285)
v2.0.1 修改了webpack 的 library为 'hahahalibrary'

webpack 配置项

sxwangh

发版说明

npm config set registry https://registry.npmjs.org/ npm who am i npm login npm publish

使用例子:https://github.com/sxwangh/wsx-js-tool-useExample

1/commonjs 引用 [email protected]

npm install [email protected]

// const wsxJsTool = require('wsx-js-tool-hi').default;
// commonjs
const wsxJsTool = require('wsx-js-tool-hi');
console.log(wsxJsTool.getToday());

2/window. 引用 [email protected]

// root
<script src="./node_modules/wsx-js-tool-hi/dist/wsx-js-tool.min.js"></script>
<script>
    console.log(window['anyNameIsOk-root']); // 由于wsx-js-tool.min.js没有检测到 amd和commonjs,所以加载root['anyNameIsOk-root']
</script>

3/amd 引用 [email protected]

// amd
<script src="./node_modules/requirejs/require.js"></script>
<!--// 由于wsx-js-tool.min.js检测到了requirejs,所以按照amd的打包形式来引入,不走root的分支:else if(typeof define === 'function' && define.amd  define("anyNameIsOk-amd", [], factory);-->
<script src="./node_modules/wsx-js-tool-hi/dist/wsx-js-tool.min.js"></script>
<script>
    console.log(require);
    console.log(window['anyNameIsOk-root']); // undefined
    debugger;
    window.require(['anyNameIsOk-amd'], function(tool) {
        debugger;
        console.log(tool.getToday());
        document.write(tool.getToday())
    });

</script>

4/esm 引入 [email protected]