build-fs-tree
讓你使用macro或是YAML產生自己的資料夾與資料
可以簡單用一個腳本檔產生出一些測試範例資料
use build_fs_tree::{FileSystemTree, Build, dir, file};
let tree: FileSystemTree<&str, &str> = dir! {
"index.html" => file!(r#"
<!DOCTYPE html>
<link rel="stylesheet" href="styles/style.css" />
<script src="scripts/main.js"></script>
"#)
"scripts" => dir! {
"main.js" => file!(r#"document.write('Hello World')"#)
}
"styles" => dir! {
"style.css" => file!(r#":root { color: red; }"#)
}
};
tree.build(&"public".into()).unwrap();
SWC 超快速的javascript / typescript編譯器 1.2.52釋出
主要是修正bug
navi 輔助你打出正確指令
類似zsh的命令列程式
KuiBaDB: 一個超微小相容PostgreSQL介面實作品
有趣的玩具
rust-nix-template
輔助你在nix上開發rust程式
-- From 日报小组 damody
社区学习交流平台订阅:
1
共 0 条评论, 1 页
评论区
写评论还没有评论