分享 Github 上适合开发人员强大开源的速查手册

2022-12-26 15:28:30 浏览数 (1)

为开发人员分享快速参考备忘清单<速查表>:

https://github.com/Fechin/reference

参考资料是由开源天使贡献的备忘单的集合。它以漂亮的布局为开发人员共享快速参考备忘单。[ 中文版 | ... ]

在线演示

Read the cheatsheet gracefully https://quickref.me

image.pngimage.png
image.pngimage.png

Directory structure

代码语言:javascript复制
.
├── source
│   ├── _posts   # Cheatsheet source files
│   │   ├── awk.md
│   │   ├── vim.md # => https://quickref.me/vim
│   │   ├── php.md
│   │   ├── css.md # => https://quickref.me/css
│   │   ├── ...
│   └── widget   # Widget files
│       └── chmod.html
├── public       # Distribution files
├── _config.yml
├── gulpfile.js
├── package.json
├── postcss.config.js
├── tailwind.config.js
└── themes
    └── coo      # Theme files

Development setup

  1. Clone Github repo git clone https://github.com/Fechin/reference.git
  2. 安装 npm 包管理器 (阅读安装指南)
  3. 在根文件夹中运行 npm install 以安装依赖项。
  4. 运行 npm 运行开发以启动开发服务器。这将服务于项目并在任何文件更改时实时重新加载,然后访问 http://127.0.0.1:4000 预览

0 人点赞