This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install via Homebrew | |
| brew install memcached | |
| # optional: make memcached start along with the system | |
| ln -sfv /usr/local/opt/memcached/*.plist ~/Library/LaunchAgents | |
| # load memcached now for immediate use | |
| launchctl load ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist | |
| # check the process that just launched |
The goal of this recurring exercise is to quickly scaffold a JavaScript server from memory without the aid of documentation or notes.
Regularly practice creating the following three types of express apps:
- An express app that provides a basic web server using middleware to serve static content.
- An express app that uses routing to return a response from a requested resource.

