Description
static files server designed for node written in typescript, with tests
$ npx chef-express folder [--debug]
chef-express alternatives and similar libraries
Based on the "NodeJS" category.
Alternatively, view chef-express alternatives based on common mentions on social networks and blogs.
-
Crawlee
Crawlee—A web scraping and browser automation library for Node.js to build reliable crawlers. In JavaScript and TypeScript. Extract data for AI, LLMs, RAG, or GPTs. Download HTML, PDF, JPG, PNG, and other files from websites. Works with Puppeteer, Playwright, Cheerio, JSDOM, and raw HTTP. Both headful and headless mode. With proxy rotation. -
pwa-asset-generator
Automates PWA asset generation and image declaration. Automatically generates icon and splash screen images, favicons and mstile images. Updates manifest.json and index.html files with the generated images according to Web App Manifest specs and Apple Human Interface guidelines. -
Gluon
DISCONTINUED. A new framework for creating desktop apps from websites, using system installed browsers and NodeJS -
KaibanJS
KaibanJS is a JavaScript-native framework for building and managing multi-agent systems with a Kanban-inspired approach. -
teachcode
A tool to develop and improve a student’s programming skills by introducing the earliest lessons of coding. -
Stylify
💎 Monorepository for Stylify packages. Stylify uses CSS-like selectors to generate Extremely optimized utility-first CSS dynamically based on what you write 💎. -
Autometrics
Easily add metrics to your system – and actually understand them using automatically customized Prometheus queries -
DIOD
A very opinionated inversion of control (IoC) container and dependency injector for Typescript, Node.js or browser apps. -
Brainyduck
🐥 A micro "no-backend" framework 🤯 Quickly build powerful BaaS using only your graphql schemas -
github-star-search
A CLI that search your github starred repositories offline through README , description and other fields. -
jirax
:sunglasses: :computer: Simple and flexible CLI Tool for your daily JIRA activity (supported on all OSes) -
ovm
Streamline management of vaults and plugins for Obsidian end-users by enhancing productivity and efficiency. -
zeit
Clock and task scheduler for node.js applications, providing extensive control of time and callback scheduling in prod and test code -
chef-socket
Command Line Interface Static Files Server written in TypeScript for Single Page Applications serving in Node with Socket.IO -
Be notified of new signups in your app using Firebase Authentication and Google Chat
0.2 10.0 chef-express VS Be notified of new signups in your app using Firebase Authentication and Google ChatBe notified of new signups in your app directly in Google Chat
Civic Auth - Auth in Less Than 5 Minutes

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of chef-express or a related project?
README
chef-express
static files server designed for node written in typescript, with tests
express
for serving files
Running
$ [PORT=4200] yarn chef-express folder [--debug]
const startServer = require("chef-express");
startServer({
// this enables http/ws logs
debug: process.argv.includes("--debug"),
// port on which the server listens
port: Number(process.env.PORT || 4200),
// folder to static server files
folder: process.argv[2],
}).then((server) => {
// server api is get, post, any
server.any("/*", (res, req) => {
res.end("200 OK");
});
});
PORT=4200
- choose server portfolder
- folder you want to server static files from--debug
- show logs
Install
$ yarn add chef-express
License
MIT
*Note that all licence references and agreements mentioned in the chef-express README section above
are relevant to that project's source code only.