These are the projects for the JavaScript Level 2 module in Learn JS the Hard Way.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
js-level-2-projects/02-filter-a-log-file
Zed A. Shaw 34b089b19a Got the two starters down. 2 years ago
..
README.md First layout of Ex02 but no code quite yet. 2 years ago
package.json First layout of Ex02 but no code quite yet. 2 years ago
short.log.txt First layout of Ex02 but no code quite yet. 2 years ago
step1.js Got the two starters down. 2 years ago
step2.js Got the two starters down. 2 years ago

README.md

02: Filter a Log File

In this exercise you'll take a webserver log I've created and parse the log file then filter the log for special events or information. You have a couple of approaches:

  1. Brute force the filter by simply using a regex to scan the raw text.
  2. Parse each line into meaningful data and filter on that.

The two samples in this directory get you started with both approaches. The step1.js file starts off the brute force RegEx method while the step2.js starts off the parsing method.

Keep in mind these are not solutions. They're starter file so you can get going without having to struggle with all of the setup. Once you're done you should attempt this again but do it entirely from nothing so you know how that's done.