- v17.6Latest
- v17.5
- v17.4
- v17.3
- v17.2
- v17.1
- v17.0
- v16.9
- v16.8
- v16.7
- v16.6
- v16.5
- v16.4
- v16.3
- v16.2
- v16.1
- v16.0
- v15.8
- v15.7
- v15.6
- v15.5
- v15.4
- v15.3
- v15.2
- v15.1
- v15.0
- v14.9
- v14.8
- v14.7
- v14.6
- v14.5
- v14.4
- v14.3
- 14.2
- v14.1
- v14.0
- v13.9
- v13.8
- v13.7
- v13.6
- v13.5
- v13.4
- v13.3
- v13.2
- v13.1
- v13.0
- v12.9
- v12.8
- v12.7
- v12.6
- v12.5
- v12.4
- v12.3
- v12.2
- v12.1
- v12.0
- v11.9
- v11.8
- v11.7
- v11.6
- v11.5
- v11.4
- v11.3
- v11.2
- v11.1
- v11.0
- v10.9
- v10.8
- v10.7
- v10.6
- v10.5
- v10.4
- v10.3
- v10.2
- v10.1
- v10.0
- v9.9
- v9.8
- v9.7
- v9.6
- v9.5
- 9.4
- v9.3
- v9.2
- v9.1
- v9.0
- v8.9
- v8.8
- v8.7
- v8.6
- v8.5
- v8.4
- v8.3
- v8.2
- v8.1
- v8.0
- v7.9
- v7.8
- v7.7
- v7.6
- v7.5
- v7.4
- v7.3
- v7.2
- v7.1
- v7.0
- v6.9
- v6.8
- v6.7
- v6.6
- v6.5
- v6.4
- v6.3
- v6.2
- v6.1
- v6.0
- v5.9
- v5.8
- v5.7
- v5.6
- v5.5
- v5.4
- v5.3
- v5.2
- v5.1
- v5.0
- v4.9
- v4.8
- v4.7
- v4.6
- v4.5
- v4.4
- v4.3
- v4.2
- v4.1
- v4.0
- v3.9
- v3.8
- v3.7
- v3.6
- v3.5
- v3.4
- v3.3
- v3.2
- v3.1
- v3.0
- v2.9
- v2.8
- v2.7
- v2.6
- v2.5
- v2.4
- v2.3
- v2.2
- v2.1
- v2.0
- v1.9
- v1.8
- v1.7
- v1.6
- v1.5
- v1.4
- v1.3
- v1.2
- v1.1
- v1.0
π faster_react
Important
Please give a star! β
π Introduction
faster_react
is a framework that performs Server-Side Rendering (SSR) and
hydration of all React components, and generates routes for them. To utilize
this, you must use the routes helper provided by the framework
(React Router). The frameworkβs configuration file is located
at options.json
.
faster_react
Do for You?
π― What Does Focus solely on development! This framework handles:
- π£οΈ Automatic route generation for React components.
- π Automatic inclusion of new React components when
framework => "dev": true
. - π¦ Automatic frontend bundling when
framework => "dev": true
. - β»οΈ Automatic browser reload when
framework => "dev": true
. - ποΈ Automatic frontend minification when
framework => "dev": false
. - π Automatic backend reload when changes are detected and
framework => "dev": true
. - π Automatic detection of Deno Deploy environment. Test in other
serverless environments by setting
framework => "serverless": true
.
Note: The project includes a simple application example demonstrating each functionality.
β‘ About Faster
Faster is an optimized middleware server with an incredibly small codebase (~300 lines), built on top of Denoβs native HTTP APIs with no dependencies. It includes a collection of useful middlewares:
- π Log file
- ποΈ Serve static
- π CORS
- π Session
- β±οΈ Rate limit
- π‘οΈ Token
- π₯ Body parsers
- π Redirect
- π Proxy
- π€ Handle upload
Fully compatible with Deno Deploy. Examples of all resources are available in the README. Fasterβs ideology is simple: all you need is an optimized middleware manager; all other functionality is middleware.
π Contents
- β‘ Benchmarks
- ποΈ Architecture
- π App Structure
- π§ React Router
- π¦ Packages Included
- π οΈ Creating a Project
- π Running a Project
- π Deploy
- π References
- π¨βπ» About
β‘ Benchmarks
faster_react
has only 0.9% of the code quantity of Deno Fresh.
Benchmark Command:
# Deno Fresh
git clone https://github.com/denoland/fresh.git
cd fresh
git ls-files | xargs wc -l
# Output: 104132 (version 1.7.3)
# faster_react
git clone https://github.com/hviana/faster_react.git
cd faster_react
git ls-files | xargs wc -l
# Output: 1037 (version 16.0)
ποΈ Architecture
This framework utilizes Headless Architecture [1] to build the application, combined with the Middleware Design Pattern [2] for defining API routes in the backend.
- Headless Architecture provides complete freedom to the developer, reducing the learning curve. Despite this freedom, there is an explicit separation between backend and frontend, which aids in development.
- The Middleware Design Pattern offers a practical and straightforward method for defining API routes.
π App Structure
All application folders are inside the app
folder.
π¦ Get Deno Kv and Deno Kv Fs
On the backend, if a Deno KV instance is available, access instances via
Server.kv
and Server.kvFs
:
import { Server } from "faster";
See Deno KV settings in options.json
.
- Deno KV File System (
Server.kvFs
): Compatible with Deno Deploy. Saves files in 64KB chunks. Organize files into directories, control the KB/s rate for saving and reading files, impose rate limits, set user space limits, and limit concurrent operationsβuseful for controlling uploads/downloads. Utilizes the Web Streams API.
More details: deno_kv_fs
Note: The project includes a simple application example demonstrating each functionality.
π Backend API
- Imports: Import your backend libraries here.
- Organization: Files can be organized into subdirectories.
- File Extension: Use
.ts
files. - Structure: Flexible file and folder structure that doesnβt influence anything.
- Routing: Define routes using any pattern you prefer.
- Exports: Must have a
default export
with a function (can be asynchronous). - Function Input: Receives an instance of
Server
fromfaster
. - Usage: Perform backend manipulations here (e.g., fetching data from a database), including asynchronous calls.
- Routes: Define your custom API routes. For help, see: faster
𧩠Backend Components
Optionality: A backend component is optional for a frontend component.
Imports: Import your backend libraries here.
Organization: Organize files into subdirectories.
File Extension: Use
.ts
files.Correspondence: Each file should have the same folder structure and name as the corresponding frontend component but with a
.ts
extension.- Example:
- Frontend:
frontend/components/checkout/cart.tsx
- Backend:
backend/components/checkout/cart.ts
- Frontend:
- Example:
Exports: Must have a
default export
with an object of typeBackendComponent
:import { type BackendComponent } from "@helpers/backend/types.ts";
Usage: Intercept a frontend component request:
Before Processing (
before?: RouteFn[]
): List of middleware functions (see: faster). Use to check headers (ctx.req.headers
) or search params (ctx.url.searchParams
), like tokens, impose rate limits, etc.Note: To cancel page processing, do not call
await next()
at the end of a middleware function.Important: If you want the page to be processed, do not consume the
body
ofctx.req
, or it will cause an error in the framework.After Processing (
after?: (props: Record<any, any>) => void | Promise<void>
): Function receives theprops
that will be passed to the component. Add backend data to theseprops
, such as data from a database. Can be asynchronous.Note: Only use props data in JSON-like representation, or hydration will fail.
π Backend Files
- Imports: Import your backend libraries here.
- Organization: Organize files into subdirectories.
- File Extension: Use
.ts
files. - Usage: Free to make exports or calls (including asynchronous).
- Purpose: Group common functions/objects for
backend/api
,backend/components
, and otherbackend/files
, such as user validations.
π₯οΈ Frontend Components
- Imports: Use only frontend libraries.
- Organization: Organize files into subdirectories.
- File Extension: Use
.tsx
files. - Rendering: Rendered on the server and hydrated on the client.
- Routes Generated: Two routes per file (e.g.,
frontend/components/checkout/cart.tsx
):- Page Route: For rendering as a page, e.g.,
/pages/checkout/cart
. - Component Route: For rendering as a component, e.g.,
/components/checkout/cart
.
- Page Route: For rendering as a page, e.g.,
- Initial Route (
/
): Points tofrontend/components/index.tsx
. - Exports: Must have a
default export
with the React Function/Component. - Props Passed to Component:
- Form-submitted data (or JSON POST).
- URL search parameters (e.g.,
/pages/myPage?a=1&b=2
results in{a:1, b:2}
). - Manipulations from
backend/components
.
π¨ Frontend CSS
Application CSS style files.
- Multiple Files: Automatically compiled.
- Organization: Organize files into subdirectories.
π Frontend Files
- Imports: Use only frontend libraries.
- Organization: Organize files into subdirectories.
- File Extensions: Use
.ts
and.js
files. - Usage: Free to make exports or calls (including asynchronous).
- Difference from Components: Scripts are not automatically delivered to the
client. They need to be imported by the
frontend/components
. - Purpose: Group common functions/objects for React Functions/Components,
like form field validations. Can have
frontend/files
common to otherfrontend/files
.
ποΈ Static
Files served statically. Routes are generated based on the folder and file structure.
- Example:
localhost:8080/static/favicon.ico
matchesstatic/favicon.ico
.
π§ React Router
Since the framework has its own routing system, a third-party routing library is unnecessary. Use the framework helper:
Note: Direct form submissions for routes path also work.
import { getJSON, route } from "@helpers/frontend/route.ts";
Interface Parameters:
interface Route {
headers?: Record<string, string>; // When routing to a page, headers are encoded in the URL. Intercept them in ctx.url.searchParams in a backend/components file.
content?:
| Record<any, any>
| (() => Record<any, any> | Promise<Record<any, any>>);
path: string;
startLoad?: () => void | Promise<void>;
endLoad?: () => void | Promise<void>;
onError?: (e: Error) => void | Promise<void>;
elSelector?: string; // Required for component routes.
method?: string; // Only for API routes. Optional; defaults to GET or POST.
}
Examples
Navigating to a Page with Search Params:
// URL search params passed as properties to the page. Props receive `{a:1}`
<button onClick={route({ path: "/pages/test?a=1" })}>
Go to Test Page
</button>;
Passing Additional Parameters:
// Props receive `{a:1, example:"exampleStr"}`
<button
onClick={route({
path: "/pages/test?a=1",
content: { example: "exampleStr" },
})}
>
Go to Test Page with Extra Data
</button>;
Using Asynchronous Content:
// Props receive `{a:1, ...JSONResponse}`
<button
onClick={route({
path: "/pages/test?a=1",
content: async () => {
return await getJSON({
path: "/example/json",
content: {
test: "testData",
},
});
},
})}
>
Go to Test Page with Async Data
</button>;
Programmatic Routing:
(async () => {
if (user.loggedIn) {
await route({
path: "/pages/dash",
content: { userId: user.id, token: token },
})();
} else {
await route({ path: "/pages/users/login" })();
}
})();
Loading a Component:
<button
onClick={route({
path: "/components/parts/counter",
elSelector: "#counter",
})}
>
Load Counter Component
</button>;
Making an API Call:
<button
onClick={async () => {
const res = await getJSON({
path: "/example/json",
content: {
test: "testData",
},
});
console.log(res);
alert(JSON.stringify(res));
}}
>
Fetch JSON Data
</button>;
π¦ Packages Included
Several packages are included to assist in developing React applications. Here are some examples of imports you can use without additional configuration:
import {/* your imports */} from "react";
import {/* your imports */} from "react/";
import {/* your imports */} from "i18next";
import {/* your imports */} from "reactI18next";
import {/* your imports */} from "i18nextBrowserLanguagedetector";
import {/* your imports */} from "react-dom";
import {/* your imports */} from "react-dom/server";
import {/* your imports */} from "react-dom/client";
import {/* your imports */} from "react/jsx-runtime";
import {/* your imports */} from "render";
import {/* your imports */} from "htm/react";
import {/* your imports */} from "@helpers/frontend/route.ts";
import {/* your imports */} from "@helpers/backend/types.ts";
// **About Faster:**
// Faster is an optimized middleware server with an incredibly small codebase (~300 lines), built on top of Deno's native HTTP APIs with no dependencies. It includes useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy, and handle upload. Fully compatible with Deno Deploy. Examples are available in the README. Faster's ideology: all you need is an optimized middleware manager; all other functionality is middleware. See more at: https://deno.land/x/faster
import {/* your imports */} from "faster";
import { options, server } from "@core"; // Useful for accessing the server instance.
π οΈ Creating a Project
You can simply download this repository. Alternatively, use the command
(requires git
installed and configured):
deno run -A -r "https://deno.land/x/faster_react_core/new.ts" myProjectFolder
Customize and configure the server in options.json
.
π Running a Project
Execute the command:
deno task serve
π Deploy
Install Deployctl:
deno install -A --global jsr:@deno/deployctl
Deploy Your Project:
deployctl deploy
Note: For production, set
framework => "dev": false
inoptions.json
.
π References
[1] Dragana Markovic, Milic Scekic, Alessio Bucaioni, and Antonio Cicchetti. 2022. Could Jamstack Be the Future of Web Applications Architecture? An Empirical Study. In Proceedings of the 37th ACM/SIGAPP Symposium on Applied Computing (SAC β22). Association for Computing Machinery, New York, NY, USA, 1872β1881. DOI: 10.1145/3477314.3506991
[2] Brown, Ethan. Web Development with Node and Express: Leveraging the JavaScript Stack. OβReilly Media, 2019. URL: http://www.oreilly.com/catalog/9781492053484
π¨βπ» About
Author: Henrique Emanoel Viana, a Brazilian computer scientist and web technology enthusiast.
- π Phone: +55 (41) 99999-4664
- π Website: https://sites.google.com/view/henriqueviana
Improvements and suggestions are welcome!