
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
Expressive template engine for Node.js heavily inspired by Jade.
This project aims to develop an expressive template language to write html documents using the dry and kiss principles. And of course, remove the pain of writing angle brackets.
This project is currently in it's pre-alpha stage. Current features:
$ npm install bowtie-js
Syntax highlighting and auto completion is available for Atom editor. Syntax highlighting is triggered on .bow-files.
Install:
$ apm install atom-language-bowtie
Gulp compatible compiling comes out of the box with Bowtie, example:
var gulp = require('gulp');
var bowtie = require('bowtie-js').gulp;
gulp.task('bowtie', function() {
return gulp.src('*.bow')
.pipe(bowtie({
// Pretty output
"pretty": true,
// Object to pass to template engine
"locals": {
"title": "Example application"
}
}))
.pipe(gulp.dest('./dist'));
});
!doctype("html")
html {
head {
title: $title
}
body {
div.className {
h1: "Example"
p: "Hello world!"
}
}
}
The example above outputs:
<html>
<head>
<title>Example application</title>
</head>
<body>
<div class="className">
<h1>Example</h1>
<p>Hello world!</p>
</div>
</body>
</html>
The MIT License
FAQs
Yet another template engine
We found that bowtie-js 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.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.