A modern local-first skill platform built for serious practice, polished identity, premium UI, AI-assisted coaching, and multiplayer-ready product workflows.
Live Product | Backend API | Repository
SkillNODE is a full-stack web product designed to make skill development feel structured, social, and premium rather than scattered across unrelated mini tools. It combines a responsive multi-page interface, player identity, challenge-based practice, AI hint support, fair-play monitoring, local-first result storage, and multiplayer room presence into one cohesive product experience.
The project is structured as a monorepo and split into:
- a
React + Vitefrontend for the full product interface - an
Expressbackend for AI hints, realtime presence, and future-ready service flows - shared deployment and workspace configuration at the repository root
SkillNODE is a browser-based skill development platform for learners, students, builders, and competitive users who want one polished place to train, measure progress, build a public profile, and stay inside a product that feels intentional.
At the product level, SkillNODE acts as:
- a skill lab for practice across multiple domains
- a professional profile and identity layer
- a challenge and performance tracking system
- a local-first progress product that feels fast on every session
- a lightweight multiplayer and AI-assisted learning surface
Most skill-training websites break down where the real user experience starts:
- they feel like disconnected practice pages instead of one serious product
- profile and identity are weak or missing
- progress tracking feels shallow
- challenge difficulty often stays too easy
- collaboration and social presence are treated as afterthoughts
- the UI works, but it does not feel premium
SkillNODE is built to solve that with a clearer workflow:
- enter fast through a local-first flow
- build a visible player identity
- practice across focused skill modules
- keep results and alerts close to the user for speed
- share public presence with a polished profile page
- extend into multiplayer and AI coaching without leaving the product
- Live Product:View SkillNode Live
- Backend API: Backend Health
- GitHub Repository: View GitHub Repository
SkillNODE currently ships with:
- a premium multi-page product shell with dashboard, activities, multiplayer, and profile flows
- local-first login and player identity instead of mandatory database-backed access lookup
- profile studio with display picture, bio, region, and four social links
- public profile sharing through embedded share payloads
- typing, math, guessing, coding, grammar, and comprehension modules
- tougher Grade 11-12 level math questions instead of only basic arithmetic drills
- a broader coding arena with JavaScript, Python, C++, Java, TypeScript, and SQL challenge tracks
- fair-play alerts logged into the local user experience
- realtime multiplayer room presence through Socket.IO
- AI hints for supported challenge surfaces
- polished dashboard and app-shell design
- local-first access flow for faster entry
- professional player identity and public sharing
- broader coding challenge coverage
- advanced school-level math practice
- contextual AI hint experience
- realtime room presence layer
- responsive layout for desktop and mobile
- deployment-ready frontend and backend separation
- premium command center layout
- stats, attempts, alerts, and category summaries
- featured track cards
- local-first leaderboard surface
- typing velocity
- math clash
- guess works
- code arena
- grammar lab
- comprehension practice
- player profile studio
- public profile sharing
- social links and bio
- room presence and multiplayer entry
- contextual AI hints
- fair-play alerts
- product messaging around performance and accountability
SkillNODE is built around a simple product promise:
- practice should feel structured
- progress should feel measurable
- identity should feel present
- the product should look premium while staying usable
The goal is not just to give users activities. It is to make them feel like they are inside one serious digital product where learning, competition, profile-building, and collaboration all belong together.
SkillNODE supports a broad range of challenge surfaces, and the coding arena now includes multiple language tracks for broader preparation.
- JavaScript
- Python
- C++
- Java
- TypeScript
- SQL
- typing
- advanced math
- word and number guessing
- grammar
- comprehension
- React
19.2.4 - Vite
7.3.1 - React Router
7.13.2 - Framer Motion
12.38.0 - Axios
1.14.0 - Tailwind CSS
3.4.19 - Socket.IO Client
4.8.3 - Lucide React
1.7.0
- Node.js
- Express
4.21.2 - Socket.IO
4.8.3 - Zod
3.25.76 - OpenAI SDK
5.22.0 - Resend
6.1.0 - JSON Web Token
9.0.2 - Multer
1.4.5-lts.2
- Vercel for frontend hosting
- Render for backend hosting
- npm workspaces
- root-level shared scripts
- deployment config via
render.yamland Vercel config
SkillNODE/
|- client/
| |- public/
| |- src/
| | |- components/
| | |- data/
| | |- hooks/
| | |- lib/
| | |- pages/
| | `- styles/
| |- package.json
| `- vercel.json
|- server/
| |- prisma/
| |- src/
| | |- ai/
| | |- auth/
| | |- email/
| | |- middleware/
| | |- realtime/
| | `- routes/
| `- package.json
|- docs/
| `- readme/
|- tests/
|- docker-compose.yml
|- LICENSE
|- package.json
|- render.yaml
`- README.md
- onboarding and local-first session creation
- app-shell navigation and responsive layouts
- profile editing and public-sharing flows
- challenge experiences across all skill tracks
- local result storage and summary rendering
- multiplayer room UI
- communication with backend AI and realtime services
- AI hint endpoint
- realtime multiplayer presence
- email and legacy auth scaffolding for future release paths
- service foundation for further product expansion
- User opens SkillNODE.
- User enters profile information through the local-first login flow.
- User enters the dashboard and picks a skill track.
- Session results and fair-play events are stored locally for speed and privacy.
- Optional backend-powered features such as AI hints and room presence continue to work through the deployed service.
The latest verified repo state includes:
npm run build -w clientpassingserver/src/routes/ai.jssyntax check passingserver/src/realtime/socket.jssyntax check passing
- local-first player entry without mandatory database-backed access search
- profile identity stored in browser storage for fast repeat usage
- public profile sharing with embedded share data
- backend auth and email scaffolding kept in the codebase for future extension
- polished premium UI
- local-first access and stats flow
- profile studio with social links and bio
- public profile sharing
- advanced math challenge set
- multi-language coding arena
- grammar and comprehension modules
- multiplayer room presence
- AI-assisted hints
- mobile-friendly layout
SkillNODE is built as a strong production-style MVP with:
- a real product shell instead of a landing page
- multiple dynamic pages and activity routes
- a modern identity layer
- local-first stats and session model
- optional backend-assisted features
- responsive design for desktop and mobile
- deployment-ready structure for Vercel and Render
- Node.js
22.x - npm
10+ - PostgreSQL
15+or Docker if you want legacy backend database routes available locally
npm installdocker-compose up -d postgresCreate server/.env:
APP_ENV=development
PORT=5000
PUBLIC_APP_URL=http://localhost:5173
PUBLIC_APP_URLS=
PUBLIC_APP_URL_REGEX=
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/skillnode?schema=public
JWT_SECRET=change_me_to_a_long_random_secret
RESEND_API_KEY=
RESEND_FROM=SkillNODE <onboarding@resend.dev>
OPENAI_API_KEY=
ALLOW_DEV_LOGIN_CODE=trueCreate client/.env:
VITE_API_BASE_URL=http://localhost:5000npm run dev:servernpm run dev:client- Frontend:
http://localhost:5173 - Backend:
http://localhost:5000
npm run buildnpm run build -w client- hosted on
Vercel - root directory:
client
- hosted on
Render - uses the Express backend from
server
VITE_API_BASE_URL=https://skillnode-api.onrender.comAPP_ENV=production
PORT=5000
PUBLIC_APP_URL=https://skill-node-client-bvoh.vercel.app
PUBLIC_APP_URLS=
PUBLIC_APP_URL_REGEX=^https://.*\.vercel\.app$
DATABASE_URL=your_postgres_connection_string
JWT_SECRET=replace_me
RESEND_API_KEY=replace_me
RESEND_FROM=SkillNODE <your-verified-sender>
OPENAI_API_KEY=replace_me
ALLOW_DEV_LOGIN_CODE=falseSkillNODE is protected under a custom restricted license.
The full license text is available in LICENSE.
License summary:
- copyright Β© 2026 Rudranarayan Jena
- all rights reserved
- no copying, modification, distribution, hosting, reuse, or derivative work without prior written permission
- no commercial or non-commercial use is allowed unless explicitly approved by the author
SkillNODE is not released as an open-source project under MIT, Apache, GPL, or any other permissive/public license.
Crafted by MR. Rudranarayan Jena
Product Builder | Full-stack Developer | AI Enthusiast | Creator of SkillNODE
Focused on building polished digital products, modern web applications, and user experiences that feel premium instead of generic.





