All Projects → wenyan-lang → wyg

wenyan-lang / wyg

Licence: MIT license
文淵閣 Package manager for wenyan-lang

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to wyg

ide
文言齋 Online IDE for wenyan-lang
Stars: ✭ 25 (-13.79%)
Mutual labels:  wenyan, wenyan-lang
wakemeops
A Debian repository for portable applications
Stars: ✭ 54 (+86.21%)
Mutual labels:  packages-manager
Wenyan
文言文編程語言 A programming language for the ancient Chinese.
Stars: ✭ 17,820 (+61348.28%)
Mutual labels:  wenyan-lang

文淵閣 - Package management for wenyan-lang

npm GitHub Workflow Status

wyg(wenyan-get, or 文淵閣) is a package manager for wenyan-lang. Just like npm for Node.js or pip for Python.

Install

npm i -g @wenyan/wyg

Example Usage

wyg i ziyue

Chinese names are also acceptable s

wyg i 子曰

The command above will download the package 子曰 to 藏書樓/子曰 of cwd. You can think of 藏書樓 as the wenyan version of node_modules.

💡 You may want to include 藏書樓 into your .gitignore as well

Then write code and import the package as you always do

吾嘗觀「「子曰」」之書。方悟「子曰」之義。

子曰「「巧言令色,鮮矣仁!」」。

💬 Importing from 藏書樓 is only supported by Wenyan v0.2.2 or above.

Publish Your Own Packages

Please following the instruction in wyg-registry.

Use wyg in browser

You can fetch the package information by

<script src="https://unpkg.com/@wenyan/wyg"></script>
Wyg.resolve('ziyue')
  .then(({ name, entry, author, repo }) => {
    console.log(name, entry)
  })

Output:

子曰 https://raw.githubusercontent.com/antfu/ziyue-wy/master/序.wy

Direct import

You can access packages with Urls this format. It will redirect to the package repo's 序.wy file.

https://wyg.wy-lang.org/pkg/<package-name>

For example, the following two links are both acceptable.

https://wyg.wy-lang.org/pkg/ziyue
https://wyg.wy-lang.org/pkg/子曰

If you want to use packages in Browser Runtime, you can import them by:

<script src='https://unpkg.com/@wenyan/runtime'></script>

<script type="application/wenyan" src="https://wyg.wy-lang.org/pkg/ziyue"></script>

License

MIT License © 2020 Anthony Fu

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].