├── package.json
├── LICENSE
└── README.md
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "scripts": {
4 | "toc": "npx markdown-toc -i --bullets=- README.md"
5 | }
6 | }
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Alexander Niebuhr
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [website]: https://windicss.org/guide/
2 |
3 |
4 | 
5 |
6 | Windi CSS - AWESOME
7 |
8 |
9 | ## Table of content
10 |
11 |
12 |
13 |
14 |
15 | - [Table of content](#table-of-content)
16 | - [Resources](#resources)
17 | - [Official Resources](#official-resources)
18 | - [Documentation 📖](#documentation-)
19 | - [Get Started](#get-started)
20 | - [Examples](#examples)
21 | - [Vue](#vue)
22 | - [React](#react)
23 | - [Svelte](#svelte)
24 | - [Next](#next)
25 | - [Nuxt](#nuxt)
26 | - [October CMS](#october-cms)
27 | - [Plugins](#plugins)
28 | - [Framework-agnostic Plugins](#framework-agnostic-plugins)
29 | - [Integrations](#integrations)
30 | - [Showcases](#showcases)
31 |
32 |
33 |
34 |
35 |
36 | ## Resources
37 |
38 | ### Official Resources
39 |
40 | - [Documentation](https:/windicss.org)
41 | - [GitHub Repo](https://github.com/windicss/windicss)
42 | - [Release Notes](https://github.com/windicss/windicss/releases)
43 |
44 | ## Documentation 📖
45 | Check [the documentation website][website].
46 |
47 | ## Get Started
48 |
49 | ### Examples
50 | #### Vue
51 | - [Vue + Vite](https://github.com/windicss/vite-plugin-windicss/tree/main/examples/vue) by [@antfu](https://github.com/antfu)
52 |
53 | #### React
54 | - [React + Vite](https://github.com/windicss/vite-plugin-windicss/tree/main/examples/react) by [@antfu](https://github.com/antfu)
55 |
56 | #### Svelte
57 |
58 | - [Svelte + Webpack](https://github.com/windicss/webpack-windicss-plugin/tree/master/example/svelte) by [@loonpwn](https://github.com/loonpwn)
59 | - [Svelte + Vite + Routify](https://github.com/reepolee/svelte-routify-windi-vite) by [@reepolee](https://github.com/reepolee) Uses Vite in combination with Routify to support file-based routing. Spank is included as Static Site Generator, as well as spassr.
60 | - 🚧 [Svelte + Sveasy](https://github.com/alexanderniebuhr/svelte-sveasy-windicss) by [@alexanderniebuhr](https://github.com/alexanderniebuhr) - uses new bundler sveasy to imrpove speed even more.
61 |
62 | #### Next
63 | - [Next + Webpack](https://github.com/windicss/webpack-windicss-plugin/tree/master/example/next) by [@loonpwn](https://github.com/loonpwn)
64 |
65 | #### Nuxt
66 | - [Nuxt + Webpack](https://github.com/windicss/webpack-windicss-plugin/tree/master/example/nuxt) by [@loonpwn](https://github.com/loonpwn)
67 |
68 | #### October CMS
69 | - [October CMS + Vite](https://github.com/chkilel/vitewind-theme) by [@chkilel](https://github.com/chkilel)
70 |
71 | ## Plugins
72 | see [windicss/plugins](https://github.com/windicss/plugins)
73 |
74 | ### Framework-agnostic Plugins
75 |
76 | #### Integrations
77 | - [cli](https://windicss.org/guide/cli)
78 | - [windicss-intellisense](https://github.com/windicss/windicss-intellisense)
79 | - [vite-plugin-windicss](https://github.com/windicss/vite-plugin-windicss)
80 | - [rollup-plugin-windicss](https://github.com/windicss/vite-plugin-windicss/tree/main/packages/rollup-plugin-windicss)
81 | - [windicss-webpack-plugin](https://github.com/windicss/windicss-webpack-plugin)
82 | - [vue-windicss-preprocess](https://github.com/windicss/vue-windicss-preprocess)
83 | - [nuxt-windicss-module](https://github.com/windicss/nuxt-windicss-module)
84 | - [svelte-windicss-preprocess](https://github.com/windicss/svelte-windicss-preprocess)
85 | - [vite-plugin-styled-windicss](https://github.com/JiangWeixian/vite-plugin-styled-windicss)
86 | - [babel-plugin-styled-windicss](https://github.com/JiangWeixian/babel-plugin-styled-windicss)
87 |
88 | ## Showcases
89 |
--------------------------------------------------------------------------------