0.1.12 • Published 8 years ago
modular-code v0.1.12
modular-code
An incredibly simple way to modularize your code.
Install
npm install -g modular-coderoot.html
{%header.html%}
{%body.html%}
{%footer.html%}header.html
<html>
<head>
</head>body.html
<body>
<div>
{%hello.html%}
{%world.html%}
</div>
</body>footer.html
</html>hello.html
<span>Hello</span>world.html
<span>World</span>Build
modular-code ./root.html ./main.htmlResult - main.html
<html>
<head>
</head>
<body>
<div>
<span>Hello</span>
<span>World</span>
</div>
</body>
</html>