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

com.scorpio.conversion.runtime

v1.0.1

Published

* author : while * QQ群 : 245199668 [加群](http://shang.qq.com/wpa/qunwpa?idkey=8ef904955c52f7b3764403ab81602b9c08b856f040d284f7e2c1d05ed3428de8)

Downloads

2

Readme

ScorpioConversion

  • author : while
  • QQ群 : 245199668 加群

工具说明

  • 转换Excel配置表为二进制数据
  • 配置文件全部使用 sco 脚本配置 Scorpio-CSharp 源码地址 https://github.com/qingfeng346/Scorpio-CSharp
  • 示例Excel Excel
  • 示例扩展配置 Config
  • 示例info配置
  • 执行方式为 命令行执行
  • 具体命令行参数可以使用 scov -h 查看

支持的操作系统

  • Windows
  • MacOS
  • Linux

支持的语言

语言 | 生成器 | 需要安装库
----- | ---- | ---- c# | GeneratorCSharp | Scorpio.Conversion.Runtime sco脚本 | GeneratorScorpio | Scorpio.Conversion.Runtime Java | GeneratorJava | Scorpio.Conversion.Runtime.jar Javascript | GeneratorJavascript | Scorpio.Conversion.Runtime Python | GeneratorPython | Scorpio.Conversion.Runtime

  • 更多语言可以自行实现生成器

支持的数据类型

类型 | 类型名1 | 类型名2 | 备注 ----- | ---- | ---- | ---- bool | bool | boolean | 1字节 int8 | int8 | sbyte | 1字节 uint8 | uint8 | byte | 1字节 int16 | int16 | short | 2字节 uint16 | uint16 | ushort | 2字节 int32 | int32 | int | 4字节 uint32 | uint32 | uint | 4字节 int64 | int64 | long | 8字节 uint64 | uint64 | ulong | 8字节 float | float | float32 | 4字节 double | double | float64 | 8字节 string | string | string | urf-8字符串 datetime| datetime | datetime | 时间戳,8字节 bytes | bytes | bytes | 二进制数据,支持 base64:// file://

  • 自定义结构,定义方式参考示例
  • 所有数据类型前加上array关键字可以定义数组结构,例如 arrayint32

Excel表填写示例

  • /FileName 名称,类名 不填默认使用 file或sheet名字
  • /Comment 字段注释
  • /Name 字段名字
  • /Type 字段类型
  • /Default 字段默认值
  • /Begin 数据开始行(可以有多个Begin)
  • /End 数据结束行
  • /BeginBranch 分支数据开始行(可以有多个Begin)
  • /EndBranch 分支数据结束行