Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Server Side Includes for NodeJS
Warning: I am no longer supporting this project. If you are interested in taking over, please get in touch.
Note: The current version of ssi does all IO synchronously. Further development plans include writing methods asynchronously and migrating current methods to conform to Node conventions for synchronous methods.
<!--#include virtual="" -->
<!--#include file="" -->
<!--#set var="" value="" -->
<!--#echo var="" -->
<!--#if expr="" -->
<!--#elif expr="" -->
<!--#else -->
<!--#endif -->
npm install ssi
var ssi = require("ssi");
var inputDirectory = "/tmp/test";
var outputDirectory = "/tmp/output";
var matcher = "/**/*.shtml";
var useNginx = true;//如果使用nginx功能,则查找mods目录是固定的去src目录下查找,解决多层目录调用ssi的问题
var includes = new ssi(inputDirectory, outputDirectory, matcher, useNginx);
includes.compile();
filename String
path to the file
contents String
Contents of the file to be parsed
Method returns the parsed contents
Method parses all of the files found by the matcher in the input directory, and writes the files to the output directory with identical names and directory structure.
MIT
FAQs
基于node-ssi的工程来fork了一个适用于nginx开启ssi服务的功能
We found that ssi2 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.