All Projects → airbnb → Goji Js

airbnb / Goji Js

Licence: mit
React ❤️ Mini Program

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Goji Js

-toast-
❕微信小程序自定义提示组件
Stars: ✭ 28 (-79.86%)
Mutual labels:  miniapp, wechat-mini-program
uniapp-scaffold
基于Vue.js的跨平台小程序脚手架、设计语言、组件库及插拔式模板
Stars: ✭ 87 (-37.41%)
Mutual labels:  miniapp, wechat-mini-program
Qiniu Wxapp Sdk
qiniu SDK based on wxapp
Stars: ✭ 638 (+358.99%)
Mutual labels:  wechat-mini-program, miniapp
CHCharts-wechat
📈A charts component for WeChat mini-app development(一款用于微信小程序开发中的图表组件,使用者可以快速添加并集成到微信小程序开发中).
Stars: ✭ 71 (-48.92%)
Mutual labels:  miniapp, wechat-mini-program
Vscode Miniapp Helper
微信小程序开发助手 for VSCode
Stars: ✭ 137 (-1.44%)
Mutual labels:  wechat-mini-program, miniapp
Wechat Miniprogram Ar 3d
A WeChat MiniProgram 3D that includes a Panorama Viewer and a 3D Viewer using the device orientation control.
Stars: ✭ 80 (-42.45%)
Mutual labels:  wechat-mini-program
Git Webhook Ci
A Git (github/gitee) webhook callback server to do stuff e.g. fetch new code (poor man CI)
Stars: ✭ 118 (-15.11%)
Mutual labels:  wechat-mini-program
Taro Msparis
🌱用 React 编写的基于Taro + Dva构建的适配不同端(微信/百度/支付宝小程序、H5、React-Native 等)的时装衣橱
Stars: ✭ 1,203 (+765.47%)
Mutual labels:  wechat-mini-program
Agora Miniapp Tutorial
Hello world for Agora SDK running in https://en.wikipedia.org/wiki/WeChat#WeChat_Mini_Program
Stars: ✭ 75 (-46.04%)
Mutual labels:  wechat-mini-program
Yoshop
萤火小程序商城,是在Thinkphp5基础上搭建的一个PHP项目,前后端完全开源。Thinkphp5以易学易用著称,让您轻松打造自己的独立商城,同时也方便二次开发,让您快速搭建个性化独立商城。
Stars: ✭ 137 (-1.44%)
Mutual labels:  wechat-mini-program
Rktk Wxx
软考题库微信小程序 ENJOY
Stars: ✭ 131 (-5.76%)
Mutual labels:  wechat-mini-program
Rageframe2
一个基于Yii2高级框架的快速开发应用引擎
Stars: ✭ 1,553 (+1017.27%)
Mutual labels:  wechat-mini-program
Phps.shop Api
如花拼团商城_TP5_VUE_小程序
Stars: ✭ 90 (-35.25%)
Mutual labels:  wechat-mini-program
Weapp Monument Valley
纪念碑谷 小程序 源码
Stars: ✭ 119 (-14.39%)
Mutual labels:  wechat-mini-program
Mina Webpack
🍱 Mina single-file-component meets Webpack
Stars: ✭ 77 (-44.6%)
Mutual labels:  wechat-mini-program
Question And Answer Sharing System
本系统是基于微信小程序的问答分享系统,采用微信小程序的形式进行开发,后端采用Java框架开发,用户可以在小程序中进行提问、回答、分享故事、评论、围观以及充值收益等操作,在围观的过程中,用户对于感兴趣的内容可进行打赏与点赞。 对于本系统中的提问与分享,提供免费与付费两种模式,将知识交互的便捷性和信息娱乐的共享性进行结合。
Stars: ✭ 135 (-2.88%)
Mutual labels:  wechat-mini-program
Weapp Qrcode
weapp.qrcode.js 在 微信小程序 中,快速生成二维码
Stars: ✭ 1,194 (+758.99%)
Mutual labels:  wechat-mini-program
Fard2
🎅 fre 转小程序的新思路 ♂ learn once, write anywhere.
Stars: ✭ 103 (-25.9%)
Mutual labels:  miniapp
Alita
一套把React Native代码转换成微信小程序代码的转换引擎工具。我们不造轮子,不发明新框架,只是提供工具把RN扩展到微信小程序端。
Stars: ✭ 1,733 (+1146.76%)
Mutual labels:  wechat-mini-program
Wx App Painting
微信小程序:涂鸦 (涂鸦、涂鸦照片、像素涂鸦)
Stars: ✭ 98 (-29.5%)
Mutual labels:  wechat-mini-program

GojiJS

Goji Core Goji CLI Create Goji App

React ❤️ Mini Program

中文文档

English

Visions

GojiJS enables running React code on multi Mini Program platforms.

Features

  • Fully supports React

You can use the latest version of React in GojiJS. Features including class / functional components, hooks, portal can work well on GojiJS.

  • Cross platforms ability

For now, GojiJS supports these platforms:

  • WeChat
  • Baidu
  • Alipay
  • QQ
  • Toutiao
  • Kuai App ( TBD )
  • Web ( TBD )

Demo

In GojiJS you can write React code like this:

import React, { useState } from 'react';
import { View, Text, Button, render } from '@goji/core';
import styles from './index.css';

const App = () => {
  const [count, setCount] = useState(0);
  return (
    <View className={styles.wrapped}>
      <Text>{count}</Text>
      <Button onClick={() => setCount(count + 1)}>+</Button>
    </View>
  );
};

render(App);

For more details, see GojiJS official documentation website.

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