New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

itasca

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itasca

A minimal MVC web framework for solo devs and productive teams

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

Itasca

A simple MVC framework to be productive.

Itasca is an express library designed to focus on writing your app and not worrying about the app structure. Itasca embraces convention over configuration.

Getting Started

Usage

Your entrypoint file can tell itasca to run.

// index.js
const itasca = require('itasca');

itasca.run().catch(e => {
  console.error(e);
  process.exit(1);
});

You application should have a config/application.js, and config/environments/{development, test, production}.js. These files will serve as the main configuration for itasca. If you do not include them defaults will be used.

// config/application.js

module.exports = (config) => {
  // Initialize defaults for generated Itasca version
  config.loadDefaults('0.1');
  
  // Settings in config/environments/* take precedence over those specified here.
}
// config/environments/development.js

module.exports = (config) => {
  config.logLevel = 'debug';
}

CLI

License

MIT © 2022 Evan Duncan

Keywords

web

FAQs

Package last updated on 13 Nov 2022

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