This is an interactive guide for exploring various important properties of the package.json packaging format for node.js applications.
While the following structure is not an absolute requirement or enforced by the tools, it is a recommendation based on what the JavaScript and in particular Node community at large have been following by convention.
Beyond a suggested structure, no tooling recommendations, or sub-module structure is outlined here.
lib/
is intended for code that can run as-issrc/
is intended for code that needs to be manipulated before it can be used
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
[user] | |
name = sex with satan | |
email = [email protected] | |
[push] | |
default = simple | |
[core] | |
symlinks = false | |
autocrlf = true |
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
dl[compact] { | |
display: flex; | |
flex-flow: row wrap; | |
dt, | |
dd { | |
margin: 0; | |
flex-basis: 50%; | |
} | |
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
blink { | |
animation: 1s linear infinite urgent-emphasis; | |
} | |
@keyframes urgent-emphasis { | |
0% { visibility: hidden; } | |
50% { visibility: hidden; } | |
100% { visibility: visible; } | |
} |
NewerOlder