# itasca

> A minimal MVC web framework for solo devs and productive teams

Latest version **0.0.3** (published 2022-11-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install itasca
pnpm add itasca
yarn add itasca
bun add itasca
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2022-11-13 |
| First published | 2022-11-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 7.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Evan Duncan |
| Maintainers | evanduncan |
| Keywords | web, framework, MVC, productive |

## Links

- npm: https://www.npmjs.com/package/itasca
- Repository: https://github.com/evan-duncan/itasca
- Homepage: https://github.com/evan-duncan/itasca#readme
- Issues: https://github.com/evan-duncan/itasca/issues
- npm.io page: https://npm.io/package/itasca

## Dependencies (4)

- [yargs](https://npm.io/package/yargs.md) ^17.6.2
- [dotenv](https://npm.io/package/dotenv.md) ^16.0.3
- [express](https://npm.io/package/express.md) ^4.18.2
- [@root/walk](https://npm.io/package/@root/walk.md) ^1.1.0

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2022-11-13
- 0.0.2 — 2022-11-13
- 0.0.1 — 2022-11-13

## README

# 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.
``` javascript
// 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.

``` javascript
// 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.
}
```

``` javascript
// config/environments/development.js

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

## CLI

# License

MIT &copy; 2022 Evan Duncan

---
_Source: https://npm.io/package/itasca · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
