Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Next.js | 112,277 | 391 | 3 hours ago | 1,221 | July 28, 2023 | 2,487 | mit | JavaScript | ||
The React Framework | ||||||||||
Chatgpt Next Web | 44,181 | 3 hours ago | 40 | mit | TypeScript | |||||
A well-designed cross-platform ChatGPT UI (Web / PWA / Linux / Win / MacOS). 一键拥有你自己的跨平台 ChatGPT 应用。 | ||||||||||
Trpc | 28,833 | 308 | a day ago | 435 | July 27, 2023 | 98 | mit | TypeScript | ||
🧙♀️ Move Fast and Break Nothing. End-to-end typesafe APIs made easy. | ||||||||||
Swr | 27,962 | 13 | 889 | 4 hours ago | 148 | July 26, 2023 | 81 | mit | TypeScript | |
React Hooks for Data Fetching | ||||||||||
Jsoncrack.com | 25,639 | a day ago | 41 | gpl-3.0 | TypeScript | |||||
✨ Innovative and open-source visualization application that transforms various data formats, such as JSON, YAML, XML, CSV and more, into interactive graphs. | ||||||||||
Lenster | 21,206 | 3 hours ago | 74 | agpl-3.0 | TypeScript | |||||
Lenster is a decentralized and permissionless social media app built with Lens Protocol 🌿 | ||||||||||
Medusa | 19,862 | 50 | 4 hours ago | 159 | July 27, 2023 | 353 | mit | TypeScript | ||
Building blocks for digital commerce | ||||||||||
Nativebase | 19,663 | 4,291 | 374 | 8 days ago | 378 | March 06, 2023 | 344 | mit | TypeScript | |
Mobile-first, accessible components for React Native & Web to build consistent UI across Android, iOS and Web. | ||||||||||
Nx | 19,368 | 126 | 433 | 7 hours ago | 1,098 | August 01, 2023 | 772 | mit | TypeScript | |
Smart, Fast and Extensible Build System | ||||||||||
Saleor | 19,081 | 3 hours ago | 645 | bsd-3-clause | Python | |||||
Saleor Core: the high performance, composable, headless commerce API. |
When you sign up, you can chat with other users!
This project is a fully-fledged modern application based on Actionhero
, React
, and Next.JS
. It uses Sequelzie as the ORM and connects to Redis and Postgres. This app is deployed automatically to Heroku from the master branch. This project is meant to serve as an example for a more complex Actionhero projects.
This application features:
This project runs Actionhero, which then in turn hands of processing of the front end to next.js - the project includes the code for both our backend (actionhero) and frontend (next.js).
# 1. ensure that postgres and redis are running
brew install postgresql
brew install redis
brew services start postgresql
brew services start redis
#2. create the postgres database
createdb chat_development
#3
npm start # or `npm run dev`
#1. create the postgres databases (we will run up to 5 tests in parallel)
./api/bin/create_test_databases
#2 Install the Chrome webdriver
# (on OSX)
brew cask install chromedriver
#3. Run the test suite
# we will built the app, run linters, and test the web and api
npm test
This project is automatically deployed to Heroku upon changes to the master branch. chat.actionherojs.com hosts the latest version of this codebase. The Procfile
determines what processes are run by Heroku.