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

浙公网安备 33010602011771号