nope.c Download Documentation Gallery Welcome to nope.c nope.c is a light flyweight platform for creating lightning fast and scalable network applications using C language. Just to give an idea of how light nope.c is, an app to print the "Hello world" page has a memory footprint(PSS) of 118KB in nope.c, which is about 1/75 of that node.js's 9MB or 9000KB footprint for the same app. #include "server.h" #include "nopeutils.h" void factor ( int client , const char * reqStr , const char * method ); void server ( Request request ) { routefh ( request , "/factor" ,& factor ); } void factor ( int client , const char * reqStr , const char * method ) { char * nStr = HSCANIT ( client , reqStr , "Number to factor:" ); if ( strcmp ( nStr , UNDEFINED )!= 0 ) { long n = strtol ( nStr , NULL , 10 ); nprintf ( client , "Factors of %li are: " , n ); long l ; for ( l = 2 ; l <= n ;++ l ) { if ( n %...