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

excel-tobe-json2

v1.3.3

Published

excel to json, excel 表格转 json

Downloads

9

Readme

安装excel-tobe-json2:(全局安装!)

  • npm install excel-tobe-json2 -g

参数:

|参数名|必选|类型|说明| |:---- |:---|:----- |----- | |-x |是 |string | excel路径 或者 谷歌在线表格的https地址 | |-o |否 |string | 输出路径 | |-t |否 |string | 输出各个语言json包还是一个js文件 | |-s |否 |number | 读取表格的第几个sheet数据 |

使用示例

  // 只使用 -x 参数,指明excel文件路径名。可相对路径亦可绝对。
  D:\raojianbing\anpm\excel-tobe-json2>excel-tobe-json2 -x test/excel.xlsx
  ----
  // 使用 -x 参数,指明excel文件路径名。-o 指明输出的json语言包路径。
  D:\raojianbing\anpm\excel-tobe-json2>excel-tobe-json2 -x test/excel.xlsx -o ../lang
  ----
  // -t (type)参数,可选值有js,json,表明转成js文件,还是多个json。
  D:\raojianbing\anpm\excel-tobe-json2>excel-tobe-json2 -x test/excel.xlsx -t js
  

excel示例,filename字段用来生成文件名(为了兼容,lang字段也可以生成文件名,优先filename。生成.json格式)

excel字段命名语法 https://github.com/diyao/excel-tobe-json

生成的en_lang.json文件如下

{
    "filename": "en_lang",
    "lang": "en",
    "title_image": "body_en_m.jpg",
    "apply_condition_c": [
        {
            "c": "1,condition"
        },
        {
            "c": "2,condition"
        }
    ],
    "arr_index": [
        "1,test arr",
        "2,test arr"
    ],
    "arr_table_cell": [
        "1,merge table cell",
        {
            "c": {
                "a": [
                    {
                        "b": [
                            "deep"
                        ]
                    }
                ]
            }
        },
        "3,merge table cell",
        "4,arr,push merge table cell"
    ],
    "arr_push": [
        "1,arr push",
        "2, arr push"
    ]
}

基于 https://github.com/diyao/excel-tobe-json