Skip to content

Instantly share code, notes, and snippets.

@irrationalistic
Created August 11, 2014 19:50
Show Gist options
  • Save irrationalistic/2337c1ea4fb7dc61b874 to your computer and use it in GitHub Desktop.
Save irrationalistic/2337c1ea4fb7dc61b874 to your computer and use it in GitHub Desktop.
Quick snippet for building new Express controller boilerplate
<snippet>
<content><![CDATA[
var ${1:my}Controller = {
${2:index}: function(req, res){
${3:// body}
}${0}
};
module.exports = ${1}Controller;
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>ctrl</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment