octane 0.1.1 → 0.1.3
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 +5 -5
- package/{src → dist}/compiler/compile.js +2569 -852
- package/dist/compiler/slot-hooks.js +127 -0
- package/dist/compiler/vite.js +77 -0
- package/{src → dist}/compiler/volar.js +4 -4
- package/dist/constants.d.ts +90 -0
- package/dist/constants.js +112 -0
- package/dist/css.d.ts +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +185 -0
- package/dist/runtime.d.ts +841 -0
- package/dist/runtime.js +5717 -0
- package/dist/runtime.server.d.ts +296 -0
- package/dist/runtime.server.js +1156 -0
- package/dist/server/index.d.ts +24 -0
- package/dist/server/index.js +120 -0
- package/dist/server/rpc.d.ts +10 -0
- package/package.json +33 -18
- package/src/compiler/vite.js +0 -47
- package/src/constants.ts +0 -45
- package/src/index.ts +0 -102
- package/src/runtime.server.ts +0 -586
- package/src/runtime.ts +0 -6740
- package/src/server/index.ts +0 -59
- /package/{src → dist}/compiler/index.js +0 -0
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# What is octane?
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/octane
|
|
4
|
-
[](https://www.npmjs.com/package/octane)
|
|
4
|
+
[](https://www.npmjs.com/package/octane)
|
|
5
|
+
[](https://www.npmjs.com/package/octane)
|
|
6
6
|
|
|
7
7
|
Octane is a fast, TypeScript-first UI framework, and the successor to
|
|
8
8
|
[Inferno](https://github.com/infernojs/inferno). It gives you the React API you
|
|
9
9
|
already know, a compiler that keeps the runtime small and fast, and no rules of
|
|
10
10
|
hooks, so you can call hooks conditionally. This package ships both the runtime
|
|
11
|
-
and the compiler, with the compiler exposed at `octane
|
|
11
|
+
and the compiler, with the compiler exposed at `octane/compiler`.
|
|
12
12
|
|
|
13
13
|
For the full story, see the
|
|
14
|
-
[main README](https://github.com/
|
|
14
|
+
[main README](https://github.com/octanejs/octane#readme).
|
|
15
15
|
|
|
16
16
|
Octane is alpha software. It is ready to try, but not yet ready for production.
|
|
17
17
|
|