"Given the complex and evolving energy challenges we face as a nation, EIA data and non-partisan analysis have never been more important."
Webpack: HtmlWebpackPlugin
GitHub: HtmlWebpackPlugin Options
Webpack: MiniCssExtractPlugin
GitHub: CleanWebpackPlugin
Webpack: CopyWebpackPlugin
Webpack: TerserWebpackPlugin
Webpack: CssMinimizerWebpackPlugin
Webpack: Dependency Management
NodeJS: Docs
NodeJS: Path
NodeJS: require(id)
NodeJS: What is require?
NodeJS: process.env
NodeJS: module.exports
NodeJS: fs.readdirSync(path[, options])
NodeJS: fs.statSync(path[, options])
NodeJS: fs.Stats
NodeJS: isDirectory()
MDN: Destructuring
MDN: Template Literals (Template strings)
MDN: Spread Operator
MDN: Rest Parameters
MDN: Arrow Function Expressions
MDN: return
MDN: flat()
EJS: Docs
Show Date as: yyyy
new Date().getFullYear().toString();
Show Date as: yyyy-mm-dd
new Date().toISOString().slice(0, 10);
Show Date & Time as: yyyy-mm-ddThh:mm
new Date().toISOString().slice(0, 16);
Replace the T and show as: yyyy-mm-dd - hh:mm
new Date().toISOString().slice(0, 16).replace(/T/, ' - ');
MDN: JavaScript Reference
MDN: Date()
MDN: getFullYear()
MDN: toString()
MDN: toISOString()
MDN: slice()
MDN: replace()
MDN: Content Sectioning
MDN: Text Content
MDN: Image and Multimedia
MDN: Embedded Content
MDN: Table content
MDN: Forms
MDN: CSS Reference
MDN: box-sizing
MDN: scroll-behavior
MDN: list-style
MDN: :first-child
MDN: :last-child
MDN: :nth-last-child()
MDN: :hover
MDN: :focus
MDN: transition
MDN: transform
MDN: url()
Operator | Name | Function |
---|---|---|
* | Universal Selectors | Matches elements of any type. |
HTML Element | Type Selectors | Matches elements by node name. In other words, it selects all elements of the given type within a document. |
.class-name | Class Selectors | Matches elements based on the contents of their class attribute. |
, | Selector List | Selects all the matching nodes. |
Operator | Name | Function |
---|---|---|
(" ") single space | Descendant Combinator | Combines two selectors that elements matched by the second selector are selected if they have an ancestor element matching the first selector. |
> | Child Combinator | Placed between two CSS selectors. It matches only those elements matched by the second selector that are the direct children of elements matched by the first. |
Operator | Name | Function |
---|---|---|
{ {} } | Nesting | Combine the outer rule's selector with the inner rule's. |
& | Parent Selector | Re-use the outer selector while nesting. |
$ | Variables | Don't repeat yourself just use a variable. |
.class {$var} | Property Declarations | Use a variable inside a property declaration |
Operator | Name | Function |
---|---|---|
> | Child | Nest elements inside each other |
+ | Sibling | Place elements near each other, on the same level |
^ | Climb-Up | Climb one level up the tree |
* | Multiplication | Define how many times element should be outputted |
( ) | Grouping | Grouping subtrees in complex abbreviations |
Operator | Name | Function |
---|---|---|
# | ID | Add ID |
. | Class | Add Class |
[ ] | Attributes | Add Attribute |
$ | Item Numbering | Output current number of repeated element |
@ | Ascending / Descending | Changing numbering base and direction |
{ } | Text | Add text to element |