相信很多人经历过与我类似的困扰,工作和业余项目的作者信息相互干扰。
具体来说,就是希望工作项目都使用工作邮箱作为 user.email
的配置,而业余项目都使用个人邮箱作为user.email
的配置,user.name
字段同理。
Figma是一款优秀的设计工具,不仅可以便捷地实现协作开发,同时还提供了丰富的扩展能力,使得我们可以通过编写插件实现自定义的功能。
Figma官方是有提供开发者文档的,资料也比较齐全。推荐同时读一下 https://www.figma.com/plugin-docs/intro/。
[package] | |
name = "hello-wasm" | |
version = "0.1.2" | |
authors = ["Yudu Ban <[email protected]>"] | |
edition = "2018" | |
[lib] | |
crate-type = ["cdylib", "rlib"] | |
[features] |
require('http').createServer(function (req, res) { | |
res.writeHead(200, {'Content-Type': 'text/plain'}); | |
res.write('Hello ipv4!\n'); | |
res.end(); | |
}).listen({ | |
port: 9999, | |
host: '127.0.0.1' | |
}); |