happyx试用

happyx文档 happyx源码

SSR

创建工程:

hpx create --name:ssrdemo --kind:SSR --templates --language:Nim

开发:

hpx dev --reload

发布,创建justfile:

build:
    #!/usr/bin/env bash
    nim --gcc.exe:clang -d:release --passL:-static --opt:size c main.nim
    strip main

SPA

hpx create --name:spademo --kind:SPA --templates --language:Nim

开发:

hpx dev --reload

发布,创建justfile:

build:
    #!/usr/bin/env bash
    rm -rf dist
    parcel build build/index.html --public-url ./ --no-source-maps
posted @ 2024-11-23 21:58  卓能文  阅读(15)  评论(0)    收藏  举报