Roentek /
Claude_Code_Boilerplate_Framework
This repo is a ready-to-clone starting point for setting up Claude Code as an agentic AI workspace with pre-configured tools, rules, MCP servers, and workflow patterns.
Loading repository data…
Elius94 / repository
A ready to customize project to make a nice webapp using Node.js (Express.js) for the backend and React with Typescript and Redux for the frontend.
Use this repository to build a webapp with Express.js (backend) and React+Redux (frontend).
This webapp uses RESTFULL APIs using HTTP Post messages. React app talk with the server using a Bkconnect Js file.
In this example I use Postgres for DB.
Prepare the PG database:
Make sure you have Postgres installed on your machine.
Make sure you have created the database and the user.
Go to ```./webserver/api/integrations/```
Uncomment the ```await initDb.dropDb()``` line if the db already exists.
Doing this the database will be initialized with the tables and the data defined in the folders ./webserver/api/integrations/db-definitions and ./webserver/api/integrations/fake-data:
enumerations.js: defines the enumerated types.
tables.js: defines the tables and the relationships between them.
extensions.js: defines the postgres extensions used by the tables.
fake-data.js: defines the data to fill the tables.
Run the following command to create the database:
node ./test-init-fake-db.js
Install backend env:
cd ./webserver/api/
cp .env.example .env # change the ip DB_HOST with your server ip: ex: 135.181.145.246
npm install
npm install '@pm2/io'
npm i -g pm2
npm test (it use mocha)Install frontend env:
cd ../client/
cp .env.example .env
npm install
npm install -g serve
export NODE_OPTIONS=--openssl-legacy-provider && npm run build
on Windows you have to change the script object in package.json adding set NODE_OPTIONS=--openssl-legacy-provider to the build command, before react-scripts build:
...
"scripts": {
"start": "react-scripts start",
"build": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
...
npm run build
Run both applications: To run the applications you can do in different way:
ecosystem.config.js, run it with this command in the root of the project:
npm i -g pm2 Pm2 Doc: https://pm2.keymetrics.io/docs/usage/startup/
# create pm2-root.service
pm2 startup
# run client and server
pm2 start ecosystem.config.js
# save config
pm2 save
# check logs
pm2 logs
serve.sh script (it runs 'npm run start' on the backend and 'npm run serve' on the client)The automated scripts must be executable with right permissions:
chmod +x ./install.sh
chmod +x ./serve.sh
use node -v to make shure to have the latest Node.js version.
In production mode:
Change webserver/client/.env file --> Comment Locallhost ip address and set it with your server public IP
In this example I use Postgres for DB but you can use any DB or other data storage (like MongoDB or even a NoSQL DB). For exaple you can use a csv file or a json file.
Selected from shared topics, language and repository description—not editorial ratings.
Roentek /
This repo is a ready-to-clone starting point for setting up Claude Code as an agentic AI workspace with pre-configured tools, rules, MCP servers, and workflow patterns.
wadekar9 /
A React Native boilerplate to build awesome apps 🚀 — TypeScript 💙, Redux Toolkit, React Navigation, i18n, theming, and zero-config testing. Ready. Set. Ship.
vanilla javascript and html, ready to deploy template as a telegram mini web app. README first!
Saif-El-Eslam /
A production-ready Express.js + TypeScript REST API starter with full authentication, security hardening, internationalization (EN/AR), a clean modular structure,and ready to scale.
mateussantoos /
A minimal, batteries‑included starter to build and ship Sankhya ERP HTML5 components using React 19 and Vite 7 — with JSP scaffold, stable asset filenames, alias support, Tailwind (optional), and a ZIP bundle ready for import in Sankhya.