
Research
/Security News
Shai Hulud Strikes Again (v2)
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.
@nycopportunity/pttrn-plugin-twig
Advanced tools
A plugin command script for the https://github.com/CityOfNewYork/patterns-cli that will compile Twig view templates. Replaces the default Slm compiler.
This plugin command script for the Patterns CLI will compile Twig view templates using Twig.js. It is essentially a copy of the Slm command script that replaces the Slm compiler with Twig. It supports the same command flags, NODE_ENV constant, include function, and variables. Configuration is also the same, however, the config file it will look for is named config/views.js as opposed to config/slm.js.
Twig is a template engine for PHP. Twig.js is an implementation of the same engine for JavaScript.
Install as a development dependency in a project that uses the Patterns CLI.
$ npm install @nycopportunity/pttrn-plugin-twig -D
Add a proxy command script in the ./bin/ directory:
$ touch bin/twig.js
$ echo "module.exports = require('@nycopportunity/pttrn-plugin-twig');"
This will make the command available to the CLI. Then, Twig files in the source directory can be used in place of Slm files.
├ 📂 src/ - Source directory
├ 📂 twig/ - Twig extras
├ 📁 partials/
└ 📁 layouts/
├ 📂 views/ - Twig views
├ 📂 newsletter - Sub-directory
└ index.twig
├ index.twig - Homepage
├ accordion.twig - Accordion demo page
└ buttons.twig - Buttons demo page
└ ...
└ ...
Views can then be compiled by running the following command:
$ npx pttrn twig
✨ Twig in ./src/views/accordion.twig out ./dist/accordion.html
✨ Twig in ./src/views/buttons.twig out ./dist/buttons.html
✨ Twig in ./src/views/index.twig out ./dist/index.html
✨ Twig in ./src/views/newsletter/index.twig out ./dist/newsletter/index.html
The script supports the same ./config/slm.js options as the slm command, however, it will look for a file named ./config/views.js. To use the default configuration create a proxy configuration file and export the default Slm config.
$ touch config/views.js
$ echo "module.exports = require('@nycopportunity/pttrn/config/slm');"
Or export your own configuration for the command.
The script adds the namespace @src (alternatively, src::) for referencing the source directory to extend layouts and includ partials from the ./src/twig/ directory.
Extending Layouts
{% extends "@src/twig/layouts/default.twig" %}
Including Partials
{% include '@src/twig/partials/head.twig' %}
FAQs
A plugin command script for the https://github.com/CityOfNewYork/patterns-cli that will compile Twig view templates. Replaces the default Slm compiler.
We found that @nycopportunity/pttrn-plugin-twig demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.

Research
/Security News
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.