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

lier

v2.1.23

Published

a type validator

Downloads

34

Readme

在线 Demo

npm version

Lier 是一套针对 json 的类型描述系统,它用一套和 json 很像但是更简单的语法来描述 json 的格式
在程序设计里,Lier 更像是 interface
我们在很多协同开发时可以不依赖实例 ( json ) 而依赖其 interface 从而达到解耦的目的

文档功能

可以直接根据定义来生成文档

格式的验证

可以对数据进行验证,用于单测等各种方面

数据的 mock

可以对定义进行 mock 用于并行协同开发等场景

一个简单的例子

[
    {
        "userId": 1,
        "userName": "test1",
        "displayName": "people a"
    },
    {
        "userId": 2,
        "userName": "test2"
    }
]

它对应的语法为

{
    userId: int
    userName: str
    displayName?: str
}[]

[] 跟在一个数据类型后表示这个类型的数组 ? 跟在 key 后面则代表这个属性是可选的

一个树状结构的描述

[
    {
        "userId": 1,
        "userName": "test1",
        "displayName": "people a",
        "childrens": [
            {
                "userId": 3,
                "userName": "test3",
                "childrens": [
                    {
                        "userId": 5,
                        "userName": "test5"
                    }
                ]
            },
            {
                "userId": 4,
                "userName": "test4",
                "displayName": "people d"
            }
        ]
    },
    {
        "userId": 2,
        "userName": "test2"
    }
]

它对应的语法为

type UserInfo {
    userId: int
    userName: str
    displayName?: str
    childrens?: UserInfo[]
}
UserInfo[]

使用 type 关键字 声明类型 UserInfo 其结果为对象类型 注: 最后一行不能为声明,即必须是一个 定义引用

一个多类型多数组描述

[
    {
        "type": 1,
        "delete": 1
    },
    {
        "type": 2,
        "select": ["a", 10]
    },
    {
        "type": 3,
        "update": 1,
        "data": "c"
    },
    {
        "type": 3,
        "update": 1,
        "data": 15
    }
]

它对应的语法为

({
    type: 1
    delete: int
} | {
    type: 2
    select: (int | str)[]
} | {
    type: 3
    update: int
    data: int | str
})[]

a | b 代表 a 或者 b 都可以 key 对应的 value 可以是类型也可以是具体的值,本例中 type 的 value 就是一个值

基础类型

基础类型取值范围和业界同名类型一致
  1. int
  2. str
  3. bool
  4. byte
  5. short
  6. long
  7. char
  8. uint
  9. float
  10. double
  11. number

特殊类型

{} 对象类型

{
    "name": "test",
    "value": 111
}

它对应的语法为

{
    name: str
    value: int
}

any

任意类型

never

永远不会匹配,当被匹配的时候,就会报错
和 throw 一个异常很像

enum

enum {
    name [ = index] [, ...]
}
[
    {
        "type": 1
    },
    {
        "type": 2
    },
    {
        "type": 3
    }
]

它对应的语法为

{
    type: enum {
        top = 1,
        right,
        bottom
    }
}[]

Infinity

正无穷

值类型

1 'str' "str" true null 等支持大部分 javascript 涵盖的基础类型

正则类型

/tester/i

self 关键字

传入被验证数据的根
{
    "a": 1,
    "b": {
        "c": 1
    }
}

它对应的语法为

{
    a: int
    b: {
        c: self.a
    }
}

效果为对象的 b.c 属性的值和 a 的值一样

match

match expression {
    case expression => expression
    ...
}
{
    "type": 1,
    "value": 10
}

or

{
    "type": 2,
    "value": 100
}

它对应的语法为

{
    type: enum {
        case1 = 1,
        case2
    }
    value: match self.type {
        case 1 => 10
        case any => int
    }
}

表达式类型

注:除了 | 和 & 和 ! 外,其它表达式只能和值类型一起使用

( expression )

二元表达式

  1. |
  2. &
  3. ^
  4. +
  5. -
  6. *
  7. /
  8. ==
  9. ===
  10. >
  11. <
  12. >=
  13. <=
  14. .
  15. %
  16. >>
  17. >>>
  18. <<

一元表达式

  1. !
  2. +
  3. -
  4. ~

成员访问

expression . expression expression [ expression ]

{
    "a": 2,
    "b": 4
}

它对应的语法为

{
    a: int
    b: self.a * 2
}

or

{
    a: int
    b: self['a'] * 2
}

函数调用

expression ( arguments )

{
    "a": 1
}

or

{
    "b": 1
}

or

{
    "c": 1
}

它对应的语法为

oneOf({
    a: int
}, {
    b: int
}, {
    c: int
})
key 只在对象类型里出现

类型

基础类型

id

注:id 中想包涵 $ 时请使用字符串,不然有可能和特殊类型冲突
{
    "aaa": 1
}

它对应的语法为

{
    aaa: 1
}

其中 aaa 的 key 类型为 id

数字

{
    "111": 1
}

它对应的语法为

{
    111: 1
}

字符串

一般字符串类型只有在 key 里包含特殊字符才需要使用,比如 开始为 $、 空格、引号等
{
    "$aa' a": 1
}

它对应的语法为

{
    "$aaa' a": 1
}

或者

{
    '$aaa\' a': 1
}

\ 为转义字符

特殊类型

正则

{
    "a": 1,
    "b": 2
}

它对应的语法为

{
    /^[ab]$/: int
}

$rest

当所有 key 都没有匹配到的时候,会进入 $rest 这个 key
{
    "a": 1,
    "b": 2
}

它对应的语法为

{
    $rest: int
}

当你希望一个数据里只包涵定义的 key 的时候就可以用到它

{
    "a": 1,
    "b": 2
}

它对应的语法为

{
    a: int
    b: 2
    $rest: never
}

可选

在关键字后面加 ? 就代表这个 key 是可选的

@ 以开头只能出现在对象的属性上

@range

返回选择,支持 1 到 2个参数
一个参数代表上界
{
    "a": 1
}

它对应的语法为

{
    @range(1, 10)
    a: int
}

mock

存在 mock 时会优先使用 mock 的内容
有些无法 mock 的 NP 问题也需要 mock 装饰,比如 expression & expression 这种情况

mockKey

存在 mockKey 时会优先使用 mockKey 的内容
有些无法 mock 的 NP 问题也需要 mockKey 装饰,比如 $rest 正则 key 等
使用 type 关键字可声明类型,声明后,可直接使用名字来引用它

一个简单的例子

[
    {
        "userId": 1,
        "userName": "test1",
        "displayName": "people a"
    },
    {
        "userId": 2,
        "userName": "test2"
    }
]

它对应的语法为

type UserInfo {
    userId: int
    userName: str
    displayName?: str
}

UserInfo[]

注: 最后一行不能为声明,即必须是一个 定义引用

注释必须紧跟 声明、枚举元素、对象属性、match case、tuple 元素 前后<br>
单行注释以 # 开头,多行注释以 /* 开头 */ 结束

注: 当出现在对象属性前后时,不能穿插在 @ 中,必须紧跟属性

一个简单的例子

# 用户信息
type UserInfo {
    # 用户 id
    userId: int
    userName: str
    displayName?: str
}
# 用户信息数组
UserInfo[]
{
    "regex": 2,
    "oct": 54,
    "dec": 66,
    "hex": 255,
    "int": 1,
    "str": "1",
    "bool": true,
    "byte": 1,
    "short": 1,
    "uint": 1,
    "float": 1.1,
    "enum": 2,
    "allOf": 1,
    "anyOf": "1",
    "any": {},
    "a": 1,
    "sub": [
        {
            "a": 2,
            "b": 5,
            "this": [
                {
                    "a": 2,
                    "b": 5,
                    "this": []
                }
            ]
        }
    ],
    "match": 4,
    "sf": 1,
    "A": {
        "a": 1,
        "b": [{
            "a": 1,
            "b": [],
        }]
    },
    "B": [{"a":1},1, "2"]
}

它对应的语法为

type sf.a uint
type sf.b str
type B [
    {
        a: 1
    },
    int?,
    ...str
]
type A {
    a: uint
    b: A[]
}
type Sub {
    a : sf.a | sf.b
    b : self.regex * self.regex + 1
    this : Sub[]
}
{
    @mock(1)
    regex : /^\\d$/
    /regex1/ : int
    # a
    # b
    oct : 066
    dec : 66
    hex : 0xff
    int : int
    str : str
    bool : bool
    optional? : bool
    byte : byte
    short : short
    uint : uint
    float : float
    @mock(2)
    @mock(1)
    enum : enum {
        # 1
        a = 1, b
    }
    @mock(3)
    allOf : int & uint
    anyOf : int | str
    # any 匹配任何东西
    any : any
    # never 不匹配任何东西
    never? : never
    @mockKey(1)
    $rest : any
    sub : Sub[]
    @mock(6)
    match : match self.regex {
        case 2 => 2 * 2
        case any => 3 * 2
    }
    sf: sf.a
    A: A
    B: B
    @range(10, 15)
    C?: int
}