
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.
@jolie/liquid
Advanced tools
LiquidService is a Jolie service that exposes the rendering API of the Liquid template engine as implemented by the Liqp---plus a few tricks to make it more Jolie-friendly 😉.
jpm add @jolie/liquid
from @jolie.liquid.main import Liquid
from console import Console
service main(){
embed Console as Console
embed Liquid as Liquid
main {
template =
"{% case language %}"
+ "{% when 'Danish' %}Hej"
+ "{% when 'French' %}Salut"
+ "{% when 'Italian' %}Ciao"
+ "{% when 'Spanish' %}Hola"
+ "{% when 'Russian' %}привет"
+ "{% when 'Thai' %}สวัสดี"
+ "{% else %}Hi"
+ "{% endcase %}"
+ ", {{ name }}"
data << {
name = "Saverio"
language = "Italian"
}
renderDocument@Liquid({
data << data,
template = template,
format = "jolie"
})( s )
println@Console( s )()
}
}
/**
* Loaded templates are useful when sub-templates are necessary
* in the main template (the one used in the renderDocument operation).
* From any template , it is possible to pass data to a loaded template
* with the useTemplate filter, e.g., {{ data | useTemplate: "myTemplate" }}
*/
type LiquidRequest: void {
.data: string | undefined //< either a json string or a jolie value (set accordingly the `format` node)
.format: string( regex( "json|jolie" ) )
.template: string
}
type LoadRequest: void {
.template: string
.name: string
}
FAQs
A wrapper for the Liqp Liquid template engine
We found that @jolie/liquid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.

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.