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

xtemplate-converter

v1.1.28

Published

``` . ├── babel.config.js ├── dev.config.js ├── index.js ├── jest.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── readme.md ├── src │   ├── changeData //题库数据转化模块 │   │   ├── changeQuestiondata //解析base64、svg等题库数据 │   │   │   ├──

Downloads

78

Readme

项目结构说明

.
├── babel.config.js
├── dev.config.js
├── index.js
├── jest.config.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── readme.md
├── src
│   ├── changeData //题库数据转化模块
│   │   ├── changeQuestiondata //解析base64、svg等题库数据
│   │   │   ├── baseFunction.js
│   │   │   ├── index.js
│   │   │   └── tidy.js
│   │   ├── index.js
│   │   ├── templeateData //将题库原数据转化成各个相应题型模板数据格式
│   │   │   ├── blank.js
│   │   │   ├── blankBase.js
│   │   │   ├── blanks.js
│   │   │   ├── choice.js
│   │   │   ├── choiceBase.js
│   │   │   ├── choices.js
│   │   │   ├── clozeTest.js
│   │   │   ├── common.js
│   │   │   ├── connect.js
│   │   │   ├── content.js
│   │   │   ├── drag-blank.js
│   │   │   ├── dragTaxis.js
│   │   │   ├── explain.js
│   │   │   ├── index.js
│   │   │   ├── judge.js
│   │   │   ├── judges.js
│   │   │   ├── point-word.js
│   │   │   ├── reading.js
│   │   │   ├── readingAdd.js
│   │   │   ├── roleplay.js
│   │   │   ├── sortSentence.js
│   │   │   ├── taxis.js
│   │   │   └── toWenduanBlank.js
│   │   └── unifyQuestionSource //转化题库数据来源:网校题库&内容云
│   │       ├── dataFormat.js
│   │       ├── index.js
│   │       ├── jiaoyanyun.js
│   │       ├── typeMap.js
│   │       └── wangxiao.js
│   ├── changeStyle  //主题切换模块
│   │   ├── changeCommon.js
│   │   ├── index.js
│   │   └── templeateStyle
│   │       ├── blankStyle.js
│   │       ├── choiceStyle.js
│   │       ├── connectStyle.js
│   │       └── judgeStyle.js
│   ├── core //各类型元素核心模块
│   │   ├── coreCommon  //各元素公共字段初始化
│   │   │   ├── jsonCommon.js
│   │   │   └── typeDefine.js
│   │   ├── coreDom  //dom控件
│   │   │   ├── ButtonDom.js
│   │   │   ├── DomBase.js
│   │   │   ├── DomEvent.js
│   │   │   ├── DomStyle.js
│   │   │   ├── InputDom.js
│   │   │   ├── TextDom.js
│   │   │   ├── bound
│   │   │   │   ├── Bounds.js
│   │   │   │   └── Rectangle.js
│   │   │   ├── index.js
│   │   │   └── transform
│   │   │       ├── Matrix.js
│   │   │       ├── ObservablePoint.js
│   │   │       ├── Point.js
│   │   │       ├── Transform.js
│   │   │       └── TransformBase.js
│   │   └── corePixi //pixi各类型控件
│   │       ├── AnimatedSpine.js
│   │       ├── AnimatedSprite.js
│   │       ├── Audio.js
│   │       ├── Button.js
│   │       ├── Container.js
│   │       ├── Graphics.js
│   │       ├── ImageText.js
│   │       ├── ImageText2.js
│   │       ├── Sprite.js
│   │       ├── Stage.js
│   │       ├── Text.js
│   │       ├── base.js
│   │       ├── index.js
│   │       └── pixiCommon.js
│   ├── index.js
│   ├── init.js
│   ├── interface
│   │   └── axiosBase.js
│   ├── resource //资源处理相关
│   │   ├── ResourceManager.js
│   │   ├── defaultResource.js
│   │   ├── index.js
│   │   └── spritesheetParser.js
│   └── utils //各控件基本方法
│       ├── Controller.js
│       ├── align.js
│       ├── common.js
│       ├── create.js
│       ├── createOther.js
│       ├── delete.js
│       ├── download.js
│       ├── find.js
│       ├── index.js
│       ├── scene.js
│       └── setGet.js
└── webpack.config.js

16 directories, 95 files