https://github.com/cssmagic/stylus-playground
Stylus environment for practice and testing.
https://github.com/cssmagic/stylus-playground
autoprefixer browsersync css stylus stylus-environment
Last synced: about 2 months ago
JSON representation
Stylus environment for practice and testing.
- Host: GitHub
- URL: https://github.com/cssmagic/stylus-playground
- Owner: cssmagic
- License: mit
- Created: 2014-12-30T07:20:07.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-17T04:35:21.000Z (over 8 years ago)
- Last Synced: 2025-02-22T18:03:39.070Z (about 2 months ago)
- Topics: autoprefixer, browsersync, css, stylus, stylus-environment
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 16
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Stylus-Playground
> Stylus environment for practice and testing.
用于实践和测试 Stylus 的简易开发环境。无需配置,开箱即用!
## 背景
Stylus 是一款 CSS 预处理器,与 Sass 和 Less 相比,它更像是一门编程语言,功能强大,语法灵活。同时,Stylus 完全由 JavaScript 实现,对 Node.js 工具链极为友好。
## 功能亮点
* 已配置好 Stylus 语言的编译程序
* 已内置 Autoprefixer 自动添加浏览器前缀
* 默认加载 Normalize 和 CSS Reset
* 修改文件时自动刷新浏览器 😍
* 编译错误消息直接推送到浏览器 😍
(工作模式示意:一边编辑源码、一边在浏览器中立即看到效果)
(错误消息示意:编译错误直接推送到浏览器)## 使用方法
> **注意**:以下使用方法可用,但将来有可能会有变化。建议你在升级之后重新阅读 README。
### 如何上手
0. 把这个 repo 克隆到你本地的工作目录下,安装必要的依赖:
```sh
$ git clone https://github.com/cssmagic/stylus-playground.git
$ cd stylus-playground
$ npm install
```0. 运行以下命令启动服务(请不要关闭终端窗口):
```sh
$ npm start
```此时你的默认浏览器会自动打开 `index.html` 页面。
0. 编辑 `src/index.html` 和 `src/css/index.styl` 文件,每次保存时浏览器都会自动更新,无需手动刷新。
> **注意**:强烈建议你新开一个开发分支,随便折腾无压力。
0. 如果需要终止服务,在终端窗口按 `Ctrl + C` 即可。
### 如何升级
> **注意**:在升级之前需要先终止服务。升级后请再次启动服务。
* 如果你写的代码没有保留价值,直接删掉 `stylus-playground` 目录,然后重新走一遍上述 “如何上手” 步骤。
* 如果想保留你在开发分支上写的代码,则可以先切回 `master` 分支,拉取最新代码,然后 rebase 你的开发分支即可。## 鸣谢
* [Gulp 4](https://github.com/gulpjs/gulp/tree/4.0):任务调度。
* [gulp-stylus](https://github.com/stevelacy/gulp-stylus):Stylus 编译。
* [BrowserSync](https://www.browsersync.io/):浏览器自动刷新服务。
* [Normalize.css](https://github.com/necolas/normalize.css):消灭各大浏览器默认样式的缺陷和差异。
* [Zero](https://github.com/CMUI/zero):CSS reset。
* [Autoprefixer](https://github.com/postcss/autoprefixer):为 CSS 代码添加浏览器前缀。***
## License
[MIT License](http://www.opensource.org/licenses/mit-license.php)