My personal bio(index) page
Find a file
2023-10-23 17:18:27 +08:00
src move index.js to src/ 2023-10-23 17:18:27 +08:00
template don't log unhide params to console 2023-10-23 17:18:24 +08:00
.gitignore add argument to specify config 2023-07-14 21:38:39 +08:00
config-example.toml add argument to specify config 2023-07-14 21:38:39 +08:00
LICENSE modify README, add LICENSE 2023-07-14 22:13:32 +08:00
package.json move index.js to src/ 2023-10-23 17:18:27 +08:00
README.md modify README, add LICENSE 2023-07-14 22:13:32 +08:00
yarn.lock basic layout 2023-07-13 14:11:06 +08:00

bio

My personal bio page

Feature

  • Generate html from information defined in config.toml.
  • Support to hide sensitive information and load by Javascript.
  • Material design like.
  • Generate single html file.

Build

Clone this repo, run follow command, and generated html will locationed at dist/index.html.

yarn                # install dependencies
yarn r --generate --config config-example.toml

Develop

Clone this repo, run follow command, it will generate html and reload page realtime when you modify source code. Note this is implemented simply by polling a http path every second, so it will create a lot log under "Network" tag of browser's developer tools.

cp config-example.toml config.toml
yarn watch