Setting up two different static directories in node.js Express framework

You can also set the path that static files will be served to the web from by specifying an additional (first) parameter to use() like so: app.use(“/public”, express.static(__dirname + “/public”)); app.use(“/public2”, express.static(__dirname + “/public2”)); That way you get two different directories on the web that mirror your local directories, not one url path that fails … Read more

Is it possible to get CMake to build both a static and shared library at the same time?

Yes, it’s moderately easy. Just use two “add_library” commands: add_library(MyLib SHARED source1.c source2.c) add_library(MyLibStatic STATIC source1.c source2.c) Even if you have many source files, you can place the list of sources in a Cmake variable, so it’s still easy to do. On Windows you should probably give each library a different name, since there is … Read more