forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
204 changed files
with
613 additions
and
618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ dist | |
.history | ||
bazel-bin | ||
bazel-out | ||
bazel-qoot | ||
bazel-qwik | ||
bazel-testlogs | ||
**/*.gold.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
# `Q-oot` `/kyo͞ot/` DOM-Centric, Resumable Web-App Framework | ||
# `Qwik` DOM-Centric, Resumable Web-App Framework | ||
|
||
An Open-Source framework designed for best possible [time to interactive](https://web.dev/interactive/), by focusing on [resumability](./docs/RESUMABLE.md) of server-side-rendering of HTML, and [fine-grained lazy-loading](./docs/LAZY_LOADING.md) of code. | ||
|
||
--- | ||
|
||
> _DISCLAIMER_: This project is an Open Source project of [Miško Hevery](https://github.com/mhevery) and is in no way associated with, endorsed by, or supported by [Google LLC](https://about.google). | ||
--- | ||
|
||
## Getting Started | ||
|
||
- Visit [integration](./integration) folder for guided tours of Qoot to learn how it works. | ||
- Visit [integration](./integration) folder for guided tours of Qwik to learn how it works. | ||
- Understand the difference between [resumable and replayable](./docs/RESUMABLE.md) applications. | ||
- Learn about Qoot's high level [mental model](./docs/MENTAL_MODEL.md). | ||
- Learn about Qwik's high level [mental model](./docs/MENTAL_MODEL.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
workspace( | ||
name = "qoot", | ||
name = "qwik", | ||
managed_directories = {"@npm": ["node_modules"]}, | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* @license | ||
* Copyright a-Qoot All Rights Reserved. | ||
* Copyright BuilderIO All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/a-Qoot/qoot/blob/main/LICENSE | ||
* found in the LICENSE file at https://github.com/BuilderIO/qwik/blob/main/LICENSE | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/** | ||
* @license | ||
* Copyright a-Qoot All Rights Reserved. | ||
* Copyright BuilderIO All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/a-Qoot/qoot/blob/main/LICENSE | ||
* found in the LICENSE file at https://github.com/BuilderIO/qwik/blob/main/LICENSE | ||
*/ | ||
|
||
export * from './assert.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/** | ||
* @license | ||
* Copyright a-Qoot All Rights Reserved. | ||
* Copyright BuilderIO All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/a-Qoot/qoot/blob/main/LICENSE | ||
* found in the LICENSE file at https://github.com/BuilderIO/qwik/blob/main/LICENSE | ||
*/ | ||
|
||
export * from '../index.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"description": "A CJS version of qoot", | ||
"description": "A CJS version of qwik", | ||
"type": "commonjs", | ||
"main": "./qoot.js", | ||
"typings": "../qoot.d.ts" | ||
"main": "./qwik.js", | ||
"typings": "../qwik.d.ts" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.