New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cantina-web

Package Overview
Dependencies
Maintainers
3
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cantina-web

A stack of cantina plugins that sets up a ready-to-go web application.

  • 4.2.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26
Maintainers
3
Weekly downloads
 
Created
Source

Cantina: Web

A stack of cantina plugins that sets up a ready-to-go web application.

Cantina Version: 4.x

Inspired by Motley.

Features

  • Http Server
  • Middleware Stack (middler)
  • Static File Server (buffet)
  • Views & Templates (templ)
  • Useful utilities and middleware including:
    • Form body parsing
    • Express compatibility
    • Controllers pattern
    • Weighted middleware loader

How to Use

Just load the cantina-web plugin into your cantina application, invoke the 'web' loader, and you'll have a simple, but full web stack at your disposal.

var app = require('cantina').createApp();

app.boot(function (err) {
  // Handle err.
  if (err) throw err;

  // Load cantina-web.
  app.require('cantina-web');

  // Load the 'web' stack.
  app.load('web');

  // Or, if you prefer, load the parts separately...
  // app.load('plugins');
  // app.load('views');
  // app.load('static', {dir: 'public'});
  // app.load('middleware');
  // app.load('controllers');

  // Start the app.
  app.start();
});

By default, the web loader expects your appliation root to be structured like:

 ├─┬ controllers/
 ├─┬ etc/
 │ └── conf.yaml
 ├─┬ middleware/
 ├── plugins/
 ├─┬ public/
 ├─┬ views/
 │ ├── index.hbs
 │ ├── layout.hbs
 │ └── status-404.hbs
 ├── server.js
 └── package.json

See the example app for a more customized example.


Developed by Terra Eclipse

Terra Eclipse, Inc. is a nationally recognized political technology and strategy firm located in Santa Cruz, CA and Washington, D.C.

Keywords

FAQs

Package last updated on 24 Nov 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc