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

kratos

Package Overview
Dependencies
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kratos

Powerful full stack framework using the strength of the JavaScript ecosystem

  • 1.5.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

About | Getting Started | Documentation | License | Contributing


## About

Kratos is a modern framework for building web applications on Node.js based on up-to-date ES6 features from V8.

Kratos does require the use of Node.js v4.0.0 or later.

Getting Started

Install

$ npm install kratos --save

Basic Kratos Application

'use strict'

const kratos = require('kratos')
const app = kratos()

app.get('/', function * () {
  this.body = 'Hello, World!'
})

app.run()

Start Application

$ node app.js

Kratos Application started on http://0.0.0.0:1337 in development mode.

Documentation

Currently we're lacking documentation and plan to write some here soon. Please be patient.

License

MIT © Viracore & Contributors.

Keywords

FAQs

Package last updated on 23 Sep 2015

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