
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
velocityjs
Advanced tools
A JavaScript implementation of the Apache Velocity template engine.
npm install velocityjs
import { render, parse, Compile } from 'velocityjs';
// Simple rendering
const result = render('Hello $name!', { name: 'World' });
console.log(result); // Output: Hello World!
// With macros
const macros = {
include: (path) => `Included content from ${path}`,
};
const template = '#include("header.vm") Hello $name!';
const rendered = render(template, { name: 'World' }, macros);
render(vm, context, macros)Renders a Velocity template string with the provided context and macros.
Parameters:
vm (string) - Velocity template stringcontext (object) - Data context for template variablesmacros (object) - Custom macro functionsReturns: (string) Rendered output
parse(vm, config, ignorespace)Parses a Velocity template into an AST (Abstract Syntax Tree).
Parameters:
vm (string) - Velocity template stringconfig (object) - Parsing configurationignorespace (boolean) - Whether to ignore whitespace trimmingReturns: (Array) AST nodes
CompileCompiles parsed AST into a renderable template.
import { parse, Compile } from 'velocityjs';
const asts = parse('Hello $name!');
const template = new Compile(asts);
const result = template.render({ name: 'World' });
escape (boolean) - Enable HTML escaping for variables (default: false)unescape (object) - Specify variables to exclude from escapingenv (string) - Set to 'development' to throw errors on null valuesvalueMapper (function) - Custom value transformation for #set directivescustomMethodHandlers (Array) - Custom function behavior implementationsThe context object provides data and methods to your templates:
$user.name$formatDate($date)eval method for dynamic renderingCustom macro functions can be defined for directives like #include:
import { render } from 'velocityjs';
const macros = {
include: (path) => {
// Custom include implementation
return readFile(path);
},
};
#set - Variable assignment#foreach - Loop iteration#if/#else/#elseif - Conditional logic#macro - Template macro definition#break - Loop control#stop - Template execution controlMIT License
Anime.js is a lightweight JavaScript animation library with a simple, yet powerful API. It supports a wide range of animations, including CSS properties, SVG, DOM attributes, and JavaScript objects. Compared to Velocity.js, Anime.js offers more advanced animation capabilities and a more modern API.
GSAP (GreenSock Animation Platform) is a robust JavaScript library for creating high-performance animations. It is widely used in the industry for its flexibility and power, supporting complex animations and timelines. GSAP is more feature-rich and versatile compared to Velocity.js, making it suitable for more complex animation needs.
Popmotion is a functional, flexible JavaScript animation library. It provides a range of tools for creating animations and interactions, including physics-based animations. Popmotion is more modular and functional compared to Velocity.js, offering a different approach to building animations.
FAQs
Velocity Template Language(VTL) for JavaScript
The npm package velocityjs receives a total of 519,458 weekly downloads. As such, velocityjs popularity was classified as popular.
We found that velocityjs demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.