![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
cheerio-template
Advanced tools
Express template engine, based on cheerio inspired by express-notemplate.
Allows the use of jQuery syntax in views of your application.
npm install cheerio-template
cd ./demo
npm install
node ./app.js
Enjoy in browser, http://localhost:3000
'use strict';
var application_root = __dirname,
express = require('express'),
path = require('path'),
CheerioTemplate = require('cheerio-template');
var app = express();
// Config
app.configure(function() {
//Template
app.use(express.static(path.join(application_root, '/public')));
app.set('views', path.join(application_root, '/views'));
app.engine('html', CheerioTemplate.engine);
app.set('view engine', 'html');
});
<div class="my-div"> </div>
<script type="text/javascript" cheerio-template>
$('.my-div').html('New content for div');
</script>
<!DOCTYPE html>
<html>
<head>
<title>Layout</title>
</head>
<body>
<script type="cheerio-template-block" block='content'></script>
<script type="cheerio-template-block" block='xtras'></script>
</body>
</html>
<!-- Markup extends -->
<script type="cheerio-template-extends" extends='layout'></script>
<!-- Block Content -->
<div cheerio-template-block="content">
<p>Content page</p>
</div>
<!-- Block xtras -->
<div cheerio-template-block="xtras">
<p>Extra content page</p>
</div>
app.get('/route', function(req, res) {
res.render('view', {
title:'Other Page',
author:{
name : 'Alex Rodin'
}
});
});
<div id="#title"></div>
<div id="#author-name"></div>
<script type="text/javascript" cheerio-template>
$('#title').text(data.title);
$('#author-name').text(data.author.name);
</script>
<div cheerio-template-mixin="formSelect">
<div id="content"></div>
<script type="text/javascript" mixin="formSelect">
var formSelect = function(options, name, id, value, selectClass) {
selectClass = selectClass ? selectClass : '';
name = name ? name : '';
id = id ? id : name;
var select = $('<select />', {
id: id,
name: name,
class: selectClass
});
$('#content').empty();
select.append('<option value="">...</option>');
for (var i in options) {
var option = options[i];
var selected = (value && value === option.value) ? 'selected' : undefined;
var $option = $('<option />');
$option.attr('value', option.value);
$option.attr('class', option.class);
$option.attr('selected', selected);
$option.html(option.text);
select.append($option);
}
$('#content').append(select);
return $('#content').html();
};
</script>
</div>
<div id="my-select-container"></div>
<script type="text/javascript" cheerio-template>
$('#my-select-container').html(mixin.formSelect([
{
value: 2013,
text: 'Year 2013',
class: 'class-for-option'
},
{
value: 2014,
text: 'cup of world 2014',
class: 'class-cup-of-world'
}
], 'name_for_form_select', 'select_id', 2013, 'select_class'));
</script>
<script type="cheerio-template-include" include='include/header'></script>
<script type="cheerio-template-include" include='include/mixins'></script>
<script type="cheerio-template-include" include='include/footer'></script>
<script type="cheerio-template-include" include='include/copy'></script>
<script type="text/javascript" cheerio-template>
echo('<p>This text was inserted</p>');
</script>
FAQs
Cheerio Template engine for Express
The npm package cheerio-template receives a total of 0 weekly downloads. As such, cheerio-template popularity was classified as not popular.
We found that cheerio-template 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.