The zero-dependency alternative to ExpressJS. We built the Comfiest Way to make web APIs and static file servers live on Twitch for Coding Cafe!
WebWebWeb lets you create a web server with APIs SUPER EASILY in just a few lines of code.
If you need a secure web server with SSL certificates from Let's Encrypt, check out WebWebWebs which will automatically retrieve and renew them for you while maintaining the simplicity of WebWebWeb!
Like these projects? The best way to support my open-source projects is by becoming a Comfy Sponsor on GitHub!
Come and hang out with us at the Comfiest Corner on Twitch!
- Install
webwebweb
npm install webwebweb --save
- Start the server on a port (e.g. 8099). Any HTML pages (e.g. index.html) can be placed in the root directory
/
and static files (e.g. images, scripts, and other HTML pages) can go into/web
or/public
and it will be served automagically inhttp://locahost:8099/web
orhttp://localhost:8099/public
require( "webwebweb" ).Run( 8099 );
- (Optional) Add APIs
var ComfyWeb = require( "webwebweb" );
ComfyWeb.APIs[ "/" ] = ( qs, body, opts ) => {
return { "test": "example!" };
};
ComfyWeb.Run( 8099 );
The Run()
function in WebWebWeb accepts several optional parameters:
- useCORS (default: true)
- Certificate
- PrivateKey
- CertificateChain
All request methods are sent to the API handler. You can check the opts.req.method
value to response accordingly and parse the body object for data.
var ComfyWeb = require( "webwebweb" );
ComfyWeb.APIs[ "/account" ] = ( qs, body, opts ) => {
switch( opts.req.method ) {
case "GET":
return { "account": "test" };
case "POST":
return JSON.parse( body );
case "PUT":
return { "status": "updated" };
case "DELETE":
return {};
}
};
ComfyWeb.Run( 8099 );
The request object is passed in to the API handler. You can check for header values in opts.req.headers
.
var ComfyWeb = require( "webwebweb" );
ComfyWeb.APIs[ "/" ] = ( qs, body, opts ) => {
return opts.req.headers;
};
ComfyWeb.Run( 8099 );
Actually, CORS is enabled by default. To disable CORS, set the useCORS
parameter:
var ComfyWeb = require( "webwebweb" );
ComfyWeb.Run( 8099, {
useCORS: false
} );
To add TLS support, pass in the paths to your Certificate, Key, and Certificate Chain files:
var ComfyWeb = require( "webwebweb" );
ComfyWeb.Run( 8099, {
Certificate: "cert.pem",
PrivateKey: "key.pem",
CertificateChain: "chain.pem"
} );
Thank you to all the participants of this project!
MacABearMan, Instafriend, That_MS_Gamer, Instafluff, ChatTranslator, sethorizer, simrose4u, Gilokk0, RIKACHET, UltraHal1, SaltPrincessGretchen, Ella_Fint, DutchGamer46, AntiViGames, aj2017, SoundOfGaming, DEAD_P1XL, smilesandtea, MerlinLeWizard, my_sweet_clementine, rockysenpai24, tabetaicooking, sparky_pugwash, violettepanda, TheSkiDragon, radiocaf, LinkoNetwork, jawibae, ElysiaGriffin, DarrnyH, jellydance, DevMerlin, marss112, roberttables, tiger_k1ng, LilyHazel, Psychosys82, BungalowGlow, Stay_Hydrated_Bot, pookiepew, Copperbeardy, TheHugoDahl, wil_bennett, WolvesGamingDen, FuriousFur, SausageCam, Kyoslilmonster, EndlessMoonfall, JD_Hirsch, guthron, shinageeexpress, JMSWRNR, schmiel_show, KitAnnLIVE, space_butts, lukepistachio, pipskidoodle, Kara_Kim, SIeepyMia, itsmechrisg, tapemoose, XandyCTz, Thrennenne, kollecz, Hytheria, YoursTrulyGreed