ctrl-fx 0.0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/dist/chunk-DZAR6PTR.js +3966 -0
- package/dist/chunk-KNHJPAIU.js +1800 -0
- package/dist/chunk-NSWOTCDU.js +916 -0
- package/dist/chunk-PKBMQBKP.js +7 -0
- package/dist/chunk-XICUXW4T.js +252 -0
- package/dist/db/index.d.ts +234 -0
- package/dist/db/index.js +53 -0
- package/dist/dom/index.d.ts +2 -0
- package/dist/dom/index.js +30 -0
- package/dist/effects.d.ts +2 -0
- package/dist/effects.js +111 -0
- package/dist/index-fpCmXVEu.d.ts +1391 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +18 -0
- package/dist/router.d.ts +39 -0
- package/dist/router.js +66 -0
- package/dist/testing.d.ts +254 -0
- package/dist/testing.js +40 -0
- package/dist/webcomponent.d.ts +18 -0
- package/dist/webcomponent.js +51 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -106,8 +106,21 @@ describe('shows alert', () => {
|
|
|
106
106
|
})
|
|
107
107
|
```
|
|
108
108
|
|
|
109
|
+
## Quick start
|
|
110
|
+
|
|
111
|
+
Scaffold a new project with a single command:
|
|
112
|
+
|
|
113
|
+
```
|
|
114
|
+
npx tiged chris24carroll/ctrl-fx-template my-app
|
|
115
|
+
cd my-app
|
|
116
|
+
npm install
|
|
117
|
+
npm run dev
|
|
118
|
+
```
|
|
119
|
+
|
|
109
120
|
## Installation
|
|
110
121
|
|
|
122
|
+
To add ctrl-fx to an existing project:
|
|
123
|
+
|
|
111
124
|
```sh
|
|
112
125
|
npm install ctrl-fx
|
|
113
126
|
```
|