Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
A html templating system that simply evals mustached code while creating variables from yaml files.
This is a basic templating server where you wil define YAML files to be your site URLs and these files shall load html files as templates as well as fill them with variables.
Obs.: Conditional and Repetition structures are not supported yet.
Warning: This was only tested in Windows 10.
Warning: This IS NOT production ready.
Obs.: For commands, be sure to use an elevated console (admin rights).
npm install --global --production windows-build-tools
. Obs.: It may fail sometimes.Create a YAML file with the name you want. I will call mine: settings.yml
(this one will be used in step 5).
In settings.yml
, write the following content:
sourceDir: ./yml
templatesDir: ./html
port: 8001
sourceDir
must point to where your YAML files will be.templatesDir
must point to where your HTML files will be.- Those paths must be relative to
settings.yml
path.port
defines where the HTTP server will be listening for requests.
In sources' directory, create a file named .yml
(that's right) with the following content:
title: My Awesome Title
description: My Cool description
content: My cool content
template: page
In templates' directory, create a file named page.html
with the following content:
<!DOCTYPE html>
<html>
<head>
<title>{{title}}</title>
<meta name="description" content="{{description}}" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
{{content}}
</body>
</html>
Install the server as a service with the following comands:
npm install -g gy2h
gy2h-service install my-project "/absolute/path/to/my/settings.yml"
net start gy2h-my-project
on elevated shell.sudo service gy2h-my-project start
.In your browser, get http://127.0.0.1:8001 and done!
Please, if you have any questions, suggestions, doubts, etc.. Don't hesitate to open issues.
Thanks!
FAQs
A html templating system that simply evals mustached code while creating variables from yaml files.
The npm package gy2h receives a total of 0 weekly downloads. As such, gy2h popularity was classified as not popular.
We found that gy2h demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.