A minimal template for a hardware based licensing and authentication system, written in TypeScript using Express & MongoDB.
47/100 healthLoading repository data…
Loading repository data…
smart-developer1791 / repository
A minimal and clean Node.js GraphQL server built with Express and express-graphql. Includes a fully interactive GraphiQL IDE, a custom landing page, TypeScript setup, and a simple in-memory data layer.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A minimal Node.js GraphQL server using:
/npm install
npm run dev
| Path | Method | Description |
|---|---|---|
/graphql | POST | Main GraphQL endpoint |
/graphql | GET | Opens GraphiQL IDE |
/ | GET | Custom landing page |
Note: Express-GraphQL does not provide a default landing page —
we serve a custom HTML page with a link to GraphiQL.
{
hello
}
{
users {
id
name
email
}
}
{
user(id: "2") {
id
name
email
}
}
mutation {
sendMessage(message: "Hello world!") {
message
timestamp
}
}
curl -X POST http://localhost:8081/graphql \
-H "Content-Type: application/json" \
-d "{\"query\":\"{ hello }\"}"
Selected from shared topics, language and repository description—not editorial ratings.
A minimal template for a hardware based licensing and authentication system, written in TypeScript using Express & MongoDB.
47/100 healthTheNaubit /
📝 A minimal Express Zod API boilerplate, ready to clone and build!
54/100 healthcurl -X POST http://localhost:8081/graphql \
-H "Content-Type: application/json" \
-d "{\"query\":\"{ users { id name email } }\"}"
curl -X POST http://localhost:8081/graphql \
-H "Content-Type: application/json" \
-d "{\"query\":\"{ user(id: \\\"2\\\") { id name email } }\"}"
curl -X POST http://localhost:8081/graphql \
-H "Content-Type: application/json" \
-d "{\"query\":\"mutation { sendMessage(message: \\\"Hello from curl\\\") { message timestamp } }\"}"
GraphQL Queries:
hellousersuser(id: ID)GraphQL Mutation:
sendMessage(message: String)GraphiQL IDE available at /graphql
Clean and minimal Express setup
Works perfectly on Node.js 22+
Ready for deployment on any Node platform
The root path (/) serves a custom HTML UI built with TailwindCSS:
Express-GraphQL comes with a built-in GraphiQL IDE available at /graphql when graphiql: true is enabled in the middleware.
Features include:
http://localhost:8081/graphqlhttp://localhost:8081/graphql?query=%7B%0A%20%20users%20%7B%0A%20%20%20%20id%0A%20%20%20%20name%0A%20%20%20%20email%0A%20%20%7D%0A%7Dabdulrehmanwaseem /
A minimal and modern React 19 Server-Side Rendering (SSR) starter using Vite, TypeScript, Tailwind CSS, and Express. This template leverages React 19’s new streaming SSR API with renderToPipeableStream for optimized performance. Perfect for learning and building SSR-based applications with React.
54/100 healthA minimal template for a hardware based licensing and authentication system, written in TypeScript using Express & TypeORM (SQL).
31/100 healthleosuncin /
Minimal API RESTful with MongoDB and tested with Jest
31/100 healthkristerkari /
A minimal example to show how to use observable-redux-json-api library using React, Typescript and Express.js.
42/100 health