
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
The Stylq is the cool Syntaxed HTML Preprocessor. Easy beautiful syntax. Easy Readable
Stylq is the cool syntax HTML Preprocessor. Stylq will allow user to make HTML file more easily. Stlyq is the Rich Syntax file to generator HTML file in the easy way. Stylq is the easy readable and writable.
https://github.com/aj1thkr1sh/stylq
For NPM
npm i stylq
For YARN
yarn add stylq
Every Tag name should only defined in blocks.
tagName{
<!-- Any Content -->
}
Ending with Opening and Closing Curly Braces
br{}
link rel="stylesheet" type="text/css" href="dir/stylesheet.css"{}
OR Ending without any Curly Braces
br
link rel="stylesheet" type="text/css" href="dir/stylesheet.css"
var stylq = require('stylq');
stylq.process('sample.stylq');
To Send to another location
stylq.processAndSend('sample.stylq','targetFileName.html');
Here is the sample file that is given as input.
//sample.stylq
html{
head{
title{
The Title of the Page
}
}
body{
h1{
This is header
}
p id="paragraph-id"{
This is paragraph
}
h2 style="color: blue;" id="heading-line"{
The Multi attributes
}
}
}
Here is the output of the file.
//sample.html
<!doctype html>
<html>
<head>
<title>
The Title of the Page
</title>
</head>
<body>
<h1>
This is header
</h1>
<p id="paragraph-id">
This is paragraph
</p>
<h2 style="color: blue;" id="heading-line">
The Multi attributes
</h2>
</body>
</html>
Output on the console
Stylq : sample.stylq Exported to sample.html
assign{
variableName = VariableValue;
}
OR
assign{
variableName = VariableValue
}
assign{
maxWidth = 100%
skyBlue = #1ed7f5;
widthSize = 150px;
div-textSize = 12px
}
html{
head{
title{
The Page
}
link rel="stylesheet" type="text/css" href="sheet.css"
}
body{
h1 style="color: [[skyBlue]]; width: [[maxWidth]];"{
The website
}
p{
The Paragrah is used
}
div style="width: [[widthSize]]; font-size: [[div-textSize]]"{
the widthSize is used
}
}
}
Output
<!doctype html>
<html>
<head>
<title>
The Page
</title>
<link rel="stylesheet" type="text/css" href="sheet.css" />
</head>
<body>
<h1 style="color: #1ed7f5; width: 100%;">
The website
</h1>
<p>
The Paragrah is used
</p>
<div style="width: 150px; font-size: 12px">
the widthSize is used
</div>
</body>
</html>
Comment is like mentioned below. Only Multiline Comment is allowed. Example
//sample.stylq
html{
head{
title{
The Title of the Page
}
}
body{
h1{
This is header
}
<!--
The Comment
is here.
-->
p{
This is paragraph
}
}
}
FAQs
The Stylq is the cool Syntaxed HTML Preprocessor. Easy beautiful syntax. Easy Readable
The npm package stylq receives a total of 7 weekly downloads. As such, stylq popularity was classified as not popular.
We found that stylq 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.