jq is useful to slice, filter, map and transform structured json data.
brew install jq
| * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } |
| // HOPED-FOR BEHAVIOR: /cats says: Cats Home | |
| // ACTUAL BEHAVIOR: /cats says: Main Wildcard | |
| var express = require('express'); | |
| var app = express(); | |
| app.get('/', function(req, res) { | |
| res.send('Main Home'); | |
| }) |