Socket
Socket
Sign inDemoInstall

impress

Package Overview
Dependencies
5
Maintainers
1
Versions
718
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    impress

Impressive totalitarian style web application framework


Version published
Weekly downloads
58
decreased by-44.76%
Maintainers
1
Install size
2.90 MB
Created
Weekly downloads
 

Readme

Source

impress logo

Impress

Impressive totalitarian style web application framework for node.js.

Installation

$ npm install impress

Features

  • url routing based on file system
  • serving multiple ports, network interfaces, hosts and protocols
  • caching server-side executable JavaScript in memory
  • simple server-side templating (template personalization for user groups)
  • folder monitoring for server-side executable JavaScript changes and template changes
  • sessions and cookies (memory state or persistent sessions with mongoDB)
  • simple way for json-based web services development
  • serving static files with content type and streaming for media files
  • multiple instantiation strategies:
    • single instance (one process, no master and workers)
    • instance specialization (multiple processes, one master and different workers for each server)
    • multiple instances (multiple processes, one master and identical workers with no sticky)
    • ip sticky (multiple processes, one master and workers with serving sticky by IP)
  • reverse-proxy (routing request to external HTTP server with url-rewriting)
  • flexible configuration in json file
  • simple logging web requests

Example

server.js:

require('impress');
impress.init(function() {
	// Place here other initialization code
	// to be executed after Impress initialization
});

Configuration

  1. Copy project template from examples into your project folder
  2. Edit config.js file in project folder
  3. If you want to store persistent sessions in MongoDB, you need to run setup.js
  4. Run command: node server.js

Handler examples and file system url mapping

  1. Template example Location: http://localhost Base template: /sites/localhost/html.template
  2. Override included "left.template" Location: http://localhost/override Overriden template: /sites/localhost/override/left.template Base template: /sites/localhost/html.template Handler: /sites/localhost/request.js
  3. JSON api method example Location: http://localhost/api/examples/methodName.json Handler: /sites/localhost/api/examples/methodName.json/get.js
  4. Start anonymous session Location: http://localhost/api/auth/anonymousSession.json Handler: /sites/localhost/api/auth/anonymousSession.json/get.js
  5. POST request handler Location: POST http://localhost/api/auth/regvalidation.json Handler: /sites/localhost/api/auth/regvalidation.json/post.js
  6. MongoDB access example Location: http://localhost/api/examples/getUsers.json Handler: /sites/localhost/api/examples/getUsers.json/get.js

License

Dual licensed under the MIT or RUMI licenses.

Copyright (c) 2012-2013 MetaSystems <timur.shemsedinov@gmail.com>

License: RUMI

Do you know what you are? You are a manuscript of a divine letter. You are a mirror reflecting a noble face. This universe is not outside of you. Look inside yourself; everything that you want, you are already that.

Jalal ad-Din Muhammad Rumi "Hush, Don't Say Anything to God: Passionate Poems of Rumi"

Keywords

FAQs

Last updated on 16 Jun 2013

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc