Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
AliasCss extended version intregrated with sass and cli features
npm install acssx
acssx inputfile.acss outputfile.css
const acssx = require('acssx');
acssx.dist("path/to/file/acss.js")
//Example
acssx.dist("./app/public/js/acss.js");
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AliasCSS Template</title>
<!-- AliasCSS -->
<link href="css/alias.min.css" rel="stylesheet">
</head>
<body>
<h1 class="fw6 br5px bgc_hccc c_ngreen p10px dib">Hello, world!</h1>
</body>
<script src="js/accs.js"></script>
</html>
Where accs.dist("path\to\file.js");
provides in browser compiler, 'accs.run(inputfolder\orfile ,distination)' , compiles classnames and bundles in single css file from the given input. Input can be foler, files or array of files or folder or both
const accs = require('acssx');
//input as a folder
acssx.run("./public", ".public/css/acss.css");
//input as a file
acssx.run("./public/index.html", ".public/css/acss.css");
//input as a array of files and folder,
acssx.run(["./public/index.html", "./public/about.html", "/view"], ".public/css/acss.css");
Each time you run 'accs.run()' if the destination file is same it will overwrite the content, if you want to append content to the destination file, you need to pass 'true', as third arguments.
acssx.run("./public", ".public/css/acss.css", true);
node acssx\bin\accsx inputFileOrFolder outputFile.css --watch
;
const accs = require('acssx');
//input as a folder
acssx.run("./public", ".public/css/acss.css");
//input as a file
acssx.run("./public/index.html", ".public/css/acss.css");
//input as a array of files and folder,
acssx.run(["./public/index.html", "./public/about.html", "/view"], ".public/css/acss.css");
//Watch you file/Folder i.e input note no 'watch' available for array.
acssx.watch();
@package.json
......
"scripts": {
....
"watch": "accsx pathToInputFolderOrFilename/ demo.css --watch",
....
},
....
FAQs
Extended version of ACSS, a css post processor
The npm package acssx receives a total of 5 weekly downloads. As such, acssx popularity was classified as not popular.
We found that acssx 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.