11---
2- title: OpenJS NodeJS Application Developer Study Guide
2+ layout: base.njk
33---
4- <!doctype html>
5- <html lang =" en" >
6- <head >
7- <meta charset =" utf-8" >
8- <meta name =" viewport" content =" width=device-width, initial-scale=1.0" >
9- <title >{{ title }} </title >
10- <link rel =" stylesheet" href =" //fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic" >
11- <link rel =" stylesheet" href =" //cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.css" >
12- <link rel =" stylesheet" href =" //cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.css" >
13- <link rel =" stylesheet" href =" {{ " /css /main.css " | url }}" >
14- <link rel =" stylesheet"
15- href =" //cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.16.2/build/styles/default.min.css" >
16- <script src =" //cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.16.2/build/highlight.min.js" ></script >
17- <script >hljs .initHighlightingOnLoad (); </script >
18- </head >
19- <body >
20- <header class =" container" >
21- <div class =" row" >
22- <div class =" column column-50" >
23- <h1 class =" logo" ><a href =" /" >ONAD Study Guide</a ></h1 >
24- </div >
25- <div class =" top-links column column-50" >
26- <ul >
27- <li ><a href =" https://training.linuxfoundation.org/certification/jsnad/" target =" _blank" title =" OpenJS Node.js Application Developer (JSNAD)" >JSNAD Certification</a ></li >
28- </ul >
29- </div >
30- </div >
31- </header >
32- <main class =" container" >
33- <div class =" row" >
34- <div class =" sidebar column" >
35- <nav >
36- <ul >
37- <li ><a href =" #" {% if page.url === ' /buffer/' %} class =" current" {% endif %} >Buffer and Streams</a ></li >
38- <li ><a href =" #" >Control flow</a ></li >
39- <li ><a href =" #" >Child Processes</a ></li >
40- <li ><a href =" #" >Diagnostics</li >
41- <li ><a href =" #" >Error Handling</a ></li >
42- <li ><a href =" #" >Node.js CLI</a ></li >
43- <li ><a href =" {{ " /events " | url }}" {% if page.url === ' /events/' %} class =" current" {% endif %} >Events</li >
44- <li ><a href =" #" >File System</a ></li >
45- <li ><a href =" #" >JavaScript Prerequisites</a ></li >
46- <li ><a href =" #" >Module system</a ></li >
47- <li ><a href =" #" >Process/Operating System</a ></li >
48- <li ><a href =" #" >Package.json</a ></li >
49- <li ><a href =" #" >Unit Testing</a ></li >
50- </ul >
51- </nav >
52- </div >
53- <div class =" main-content column column-75" >
54- <h1 >{{ title }} </h1 >
554
56- {{ content | safe }}
57- </div >
58- </div >
59- </main >
60- <footer class =" container" >
61- <div class =" row" >
62- <div class =" column column-75 column-offset-25" >
63- <p ><a href =" https://github.com/Node-Study-Guide/openjs-nodejs-application-developer-study-guide/tree/master/{{ page.inputPath }}" >Edit this page on GitHub</a ></p >
64- </div >
65- </div >
66-
67- </footer >
68- </body >
69- </html >
5+ <h1 >{{ title }} </h1 >
6+
7+ {{ content | safe }}
0 commit comments