
EJS -- Embedded JavaScript templates
What is EJS? What is the "E" for? "Embedded?" Could be. How about "Effective," "Elegant," or just "Easy"? EJS is a simple templating language that lets you generate HTML markup with plain …
JSDoc: Home
May 1, 2024 · Home Modules ejs Interfaces Cache Global fileLoader Documentation generated by JSDoc 4.0.2 on Wed May 01 2024 10:56:41 GMT-0700 (Pacific Daylight Time)
JSDoc: Source: lib/esm/ejs.js
* * Technically this "module" lies in the same file as {@link module:ejs}, for * the sake of organization all the private functions re grouped into this * module. * * @module ejs-internal * @private */ /** * …
JSDoc: Module: ejs
May 1, 2024 · Source: lib/esm/ejs.js, line 168 Returns: Type String (inner) resolvePaths (name, paths) → {String}
JSDoc: Source: docs/jsdoc/options.jsdoc
/** * Compilation and rendering options. * * @typedef Options * @type {Object} * * @property {Boolean} [debug=false] * Log generated JavaScript source for the EJS template to the console. * * @property …
JSDoc: Interface: Cache
May 1, 2024 · A JavaScript function cache. This is implemented by the lru-cache module on NPM, so you can simply do ejs.cache = LRU(10) to get a least-recently-used cache.