All Projects → developit → Preact Redux Example

developit / Preact Redux Example

🔁 Preact + Redux Example Project

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Preact Redux Example

Preact Worker Demo
Demo of preact rendering an entire app in a Web Worker.
Stars: ✭ 204 (+2.51%)
Mutual labels:  demo, preact
Nectarine
🍑 A mobile web / Android app for Peach! (peach.cool) ⚡️
Stars: ✭ 48 (-75.88%)
Mutual labels:  demo, preact
Preact Todomvc
💣 TodoMVC done in Preact. Under 6kb and fast.
Stars: ✭ 88 (-55.78%)
Mutual labels:  demo, preact
Cartoon
漫画软件——使用MVP + Retrofit + RxJava开发
Stars: ✭ 186 (-6.53%)
Mutual labels:  demo
Vue Vant Store
基于vue,vantUI的商城demo,包含前端和后端
Stars: ✭ 187 (-6.03%)
Mutual labels:  demo
Lwjgl3 Demos
Demo suite for LWJGL 3
Stars: ✭ 192 (-3.52%)
Mutual labels:  demo
Demo Project
存放学习过程中的demo项目,别光fork,顺便点下⭐哦
Stars: ✭ 198 (-0.5%)
Mutual labels:  demo
Jszhuyin
JS 注音:JavaScript 自動選字注音輸入法;"Smart" Chinese Zhuyin Input Method in JavaScript.
Stars: ✭ 184 (-7.54%)
Mutual labels:  demo
Demo Html Css
超好看的前端模板(学习用)
Stars: ✭ 199 (+0%)
Mutual labels:  demo
Jsstudy
Study JavaScript
Stars: ✭ 192 (-3.52%)
Mutual labels:  demo
Geopackage Js
GeoPackage JavaScript Library
Stars: ✭ 191 (-4.02%)
Mutual labels:  demo
Vue Switches
An on/off switch component for Vue.js with theme support.
Stars: ✭ 188 (-5.53%)
Mutual labels:  demo
Imodels
Interpretable ML package 🔍 for concise, transparent, and accurate predictive modeling (sklearn-compatible).
Stars: ✭ 194 (-2.51%)
Mutual labels:  demo
Bolt
The Bolt Design System provides robust Twig and Web Component-powered UI components, reusable visual styles, and powerful tooling to help developers, designers, and content authors build, maintain, and scale best of class digital experiences.
Stars: ✭ 186 (-6.53%)
Mutual labels:  preact
Mocapnet
We present MocapNET2, a real-time method that estimates the 3D human pose directly in the popular Bio Vision Hierarchy (BVH) format, given estimations of the 2D body joints originating from monocular color images. Our contributions include: (a) A novel and compact 2D pose NSRM representation. (b) A human body orientation classifier and an ensemble of orientation-tuned neural networks that regress the 3D human pose by also allowing for the decomposition of the body to an upper and lower kinematic hierarchy. This permits the recovery of the human pose even in the case of significant occlusions. (c) An efficient Inverse Kinematics solver that refines the neural-network-based solution providing 3D human pose estimations that are consistent with the limb sizes of a target person (if known). All the above yield a 33% accuracy improvement on the Human 3.6 Million (H3.6M) dataset compared to the baseline method (MocapNET) while maintaining real-time performance (70 fps in CPU-only execution).
Stars: ✭ 194 (-2.51%)
Mutual labels:  demo
Zero To Preact
A Step-by-step Guide to Preact + Webpack 2, without boilerplate!
Stars: ✭ 185 (-7.04%)
Mutual labels:  preact
Awesome Spring Boot
springboot 各种资料整理(demo、教程、网站、starter文档等),持续更新,欢迎pr。
Stars: ✭ 198 (-0.5%)
Mutual labels:  demo
Babypiganimation
基本动画、位移动画、缩放动画、旋转动画、组动画、关键帧动画、贝塞尔曲线、进度条动画、复杂动画、OC动画、aniamtion、basicanimation等。
Stars: ✭ 192 (-3.52%)
Mutual labels:  demo
Recal
A minimal, accessible React/Preact calendar component using modern CSS.
Stars: ✭ 191 (-4.02%)
Mutual labels:  preact
Pytorch Cpp
PyTorch C++ inference with LibTorch
Stars: ✭ 194 (-2.51%)
Mutual labels:  demo

Preact Redux Example

A 9kb Preact + Redux boilerplate built with Preact CLI, implementing a To-Do List app.

As of v2, now wonderfully simplified via preact-redux (no more preact-compat!).


Quick-Start Guide

Installation

1. Clone this repo:

git clone https://github.com/developit/preact-redux-example.git my-app
cd my-app

2. Make it your own:

rm -rf .git && git init && npm init

ℹ️ This re-initializes the repo and sets up your NPM project.

3. Install the dependencies:

npm install

You're done installing! Now let's get started developing.

Development Workflow

4. Start a live-reload development server:

PORT=8080 npm run dev

This is a full web server nicely suited to your project. Any time you make changes within the src directory, it will rebuild and even refresh your browser.

5. Generate a production build in ./build:

npm run build

You can now deploy the contents of the build directory to production!

Example: deploy to surge.sh:

npm i surge && surge build -d my-app.surge.sh


Structure

Apps are built up from simple units of functionality called Components. A Component is responsible for rendering a small part of an application, given some input data called props, generally passed in as attributes in JSX. A component can be as simple as:

class Link extends Component {
  render({ to, children }) {
    return <a href={ to }>{ children }</a>;
  }
}
// usage:
<Link to="/">Home</Link>

License

MIT

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].