All Projects → alephjs → Aleph.js

alephjs / Aleph.js

Licence: mit
The Full-stack Framework in Deno.

Programming Languages

typescript
32286 projects
rust
11053 projects

Projects that are alternatives of or similar to Aleph.js

greenwood
Greenwood is your workbench for the web, focused on supporting modern web standards and development to help you create your next project.
Stars: ✭ 48 (-98.61%)
Mutual labels:  ssr, esm, ssg
Ts React Boilerplate
Universal React App with Redux 4, Typescript 3, and Webpack 4
Stars: ✭ 104 (-96.98%)
Mutual labels:  hmr, ssr
Oh My Fullstack
🚀 Full stack web application skeleton (Next.js, Redux, RxJS, Immutable, Express)
Stars: ✭ 99 (-97.13%)
Mutual labels:  ssr, fullstack
Koa React Universal
lightweight React-Koa2 universal boilerplate, only what is essential
Stars: ✭ 112 (-96.75%)
Mutual labels:  hmr, ssr
Viewi
Powerful tool for building full-stack and completely reactive user interfaces using PHP
Stars: ✭ 93 (-97.3%)
Mutual labels:  full-stack, ssr
Rocky
React Over Crystal Kemal and Yarn
Stars: ✭ 94 (-97.27%)
Mutual labels:  framework, full-stack
Aspnetcore Angular Universal
ASP.NET Core & Angular Universal advanced starter - PWA w/ server-side rendering for SEO, Bootstrap, i18n internationalization, TypeScript, unit testing, WebAPI REST setup, SignalR, Swagger docs, and more! By @TrilonIO
Stars: ✭ 1,455 (-57.8%)
Mutual labels:  hmr, ssr
Antmove
小程序转换器,基于支付宝/微信小程序, 轻松地转换成其它平台的小程序。
Stars: ✭ 1,078 (-68.74%)
Mutual labels:  framework, components
Vcomponents
VComponents is a SwiftUI framework that contains 40+ customizable UI components
Stars: ✭ 117 (-96.61%)
Mutual labels:  framework, components
Cleverstyle Framework
CleverStyle Framework is simple, scalable, fast and secure full-stack PHP framework
Stars: ✭ 150 (-95.65%)
Mutual labels:  framework, full-stack
Sifrr
⚡️ Set of tiny, independent libraries for creating modern and fast webapps with javascript/typescript
Stars: ✭ 174 (-94.95%)
Mutual labels:  framework, fullstack
Stencil
A toolchain for building scalable, enterprise-ready component systems on top of TypeScript and Web Component standards. Stencil components can be distributed natively to React, Angular, Vue, and traditional web developers from a single, framework-agnostic codebase.
Stars: ✭ 9,880 (+186.54%)
Mutual labels:  ssr, ssg
Deploy Spring Boot Aws Eb
Deploying Spring Boot Apps to AWS using Elastic Beanstalk
Stars: ✭ 79 (-97.71%)
Mutual labels:  full-stack, fullstack
Capivarajs
✌️ Um novo jeito de criar componentes híbridos.
Stars: ✭ 97 (-97.19%)
Mutual labels:  framework, components
Cuba
CUBA Platform is a high level framework for enterprise applications development
Stars: ✭ 1,114 (-67.69%)
Mutual labels:  framework, full-stack
Atlas.js
A component-based Node.js library to reduce boilerplate and provide sane project structure 🍻
Stars: ✭ 108 (-96.87%)
Mutual labels:  framework, components
Celestite
Beautifully reactive, server-side rendered Svelte apps w/ a Crystal backend
Stars: ✭ 185 (-94.63%)
Mutual labels:  framework, ssr
Zinky
minimalist semi-opinionated modular framework.
Stars: ✭ 28 (-99.19%)
Mutual labels:  framework, fullstack
Suicrux
🚀 Ultimate universal starter with lazy-loading, SSR and i18n. [not maintained]
Stars: ✭ 958 (-72.22%)
Mutual labels:  ssr, fullstack
Reeakt
A modern React boilerplate to awesome web applications
Stars: ✭ 116 (-96.64%)
Mutual labels:  hmr, ssr

Aleph.js: The Full-stack Framework in Deno.

Chat Twitter

Getting Started

Visit https://alephjs.org/docs/get-started to get started with Aleph.js.

Description

Aleph.js (or Aleph or א or 阿莱夫, ˈɑːlɛf) is a fullstack framework in Deno, inspired by Next.js.

The name is taken from the book The Aleph by Jorge Luis Borges.

Different with Next.js, Aleph.js doesn't need webpack or other bundler since it uses the ES Module syntax during development. Every module only needs to be compiled once, and then cached on the disk. When a module changes, Aleph.js just needs to re-compile that single module. There is no time wasted re-bundling everytime a change is made. This, along with Hot Module Replacement (HMR) and Fast Refresh, leads to instant updates in the browser.

Aleph.js uses modern tools to build your app. It transpiles code using swc in WASM with high performance, and bundles modules with esbuild at build time extremely fast.

Aleph.js works in Deno, a simple, modern and secure runtime for JavaScript and TypeScript. All dependencies are imported using URLs, and managed by Deno cache system. No package.json and node_modules directory needed.

import React from 'https://esm.sh/react'
import Logo from '../components/logo.tsx'

export default function Home() {
  return (
    <div>
      <Logo />
      <h1>Hello World!</h1>
    </div>
  )
}

Community

The Aleph.js community can be found on GitHub Discussions, where you can ask questions, voice ideas, and share your projects.

To chat with other community members you can join the Aleph.js Discord.

Contributing

Please see our contributing.md.

License

MIT licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].