Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

appex

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appex

nodejs web api with typescript

  • 0.3.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Weekly downloads
 
Created
Source

nodejs web api with typescript

//----------------------------------------------
// app.js
//----------------------------------------------

var appex = require('appex');

var app = appex({ program : './program.ts' });

app.listen(3000);

//----------------------------------------------
// program.ts
//----------------------------------------------


export function index(context) {

	context.response.write('hello world!!');

	context.response.end();
}

install

npm install appex

overview

appex is a nodejs web api framework built on top of the TypeScript programming language. It enables developers to develop RESTful service endpoints by writing TypeScript functions, as well as providing reflection / type and interface meta data derived from the languages type system.

## getting started

The following sections outline configuring appex.

### application

Setting up.

var appex   = require('appex');

var app   = appex({ program : './program.ts', 
                    devmode : true,
                    logging : true });

app.listen(3000);
### options

appex accepts the following startup options.

var options = { 
	// (required) location of source file.
	program    : './program.ts', 

	// (optional) recompile on request. (default:false) 
	devmode    : true,          

	// (optional) log to stdout. (default:false) 
	logging    : true,

	// (optional) additional objects added on the [context](#context)
	context    : {}
};

var app = appex( options );
### http server

Setting up appex on a nodejs http server.

var http = require('http');

var appex = require('appex');

var app = appex({ program : './program.ts' });

var server = http.createServer( app );

server.listen(3000);
### express middleware

Setting up as express middleware.

var express = require('express');

var appex = require('appex');

var app = express();

app.use(appex({ program : './program.ts' })); 

app.get('/', function(req, res) {

  res.send('Hello World');
  
});

app.listen(3000);
## creating services with typescript

The following section describes how to write http accessible functions with appex.

### context

All appex functions are passed a context object as the first argument. The context object encapulates the http request and response objects issued by the underlying http server, as well as additional objects specific to appex. These are listed below:

// the context object
export function method(context) {
	
	// context.request    - the http request object.

	// context.response   - the http response object.

	// context.attribute  - appex attribute.

	// context.module     - appex module meta data and reflection.

	// context.routes     - appex routing tables.

	// context.mime       - appex mime utility.

	// context.???        - user defined [options](#options)
}
### attributes

appex supports optional declarative attributes on 'exported' modules and functions. Attributes are declaritive meta data you can associate with appex handlers to describe characteristics on given routes. Attributes are analogous to .net attributes, however, they also have a cascading behaviour that can be used to apply metadata for an entire scope. A concept similar to cascading stylesheets rules.

By default, appex uses attributes for HTTP VERB matching:


declare var attribute;

attribute("contact", {  verbs: ["get"]  } );

export function contact(context) {

	// handler will only be invoke on HTTP GET requests
}

attribute("submit", {  verbs: ["post"]  } );

export function submit(context) {

	// handler will only be invoke on HTTP POST requests
}

the following demonstrates attribute cascading:

declare var attribute;

attribute('foo', {a : 10})
export module foo {

    attribute('foo.bar', {b : 20})
    export module bar {
            
        attribute('foo.bar.index', {c : 30})
        export function index(context) {
        
            //context.attribute
            //{
            //    "a": 10,
            //    "b": 20,
            //    "c": 30
            //}            

            context.response.writeHead(200, {'content-type' : 'text/plain'});
	
            context.response.write( JSON.stringify(context.attribute, null, 4) );
	
            context.response.end();       
        }
    }
}

and for something more practical..

declare var attribute;

attribute('admin', { roles : ['administrators'] )
export module admin {
	
	export function index(context) {
		
		var user = context.user;

		if(!user.isInRole( context.attribute.roles ) ) {

			// access denied!

		}
	}
}

attributes can also be looked up by calling attribute( qualifier ).


declare var attribute;

export function index(context) {
    
	var info = attribute('other');
	
	context.response.write( JSON.stringify(info, null, 4) );
	
	context.response.end();	
}

attribute("other", {  verbs: ["get"], message:'hello' } );
export function other(context) {
    
	context.response.write(context.attribute.message);
	
	context.response.end();
}
### signatures

appex will only setup http routes to functions which conform to the following function signatures.

### http handlers

appex http handlers require the following signature:

  • argument[0] - context
  • returns - void (optional)
export function method(context) {

	context.response.write('hello world');
	
	context.response.end();
}
### index handlers

appex index handlers resolve urls to their current module scope. As demonstrated below:

appex index handlers require the following signature:

  • name - 'index'
  • argument[0] - context
  • returns - void (optional)
// url: http://[host]:[port]/
export function index(context) { 

	context.response.write('home page');
	
	context.response.end();
}

// url: http://[host]:[port]/home
export function home(context) {

	index(context)
}

export module blogs {
	
	// url: http://[host]:[port]/blogs
	export function index  (context) { /* handle request */ }
	
	// url: http://[host]:[port]/blogs/submit
	export function submit (context) { /* handle request */ }
}
### wildcard handlers

appex wildcard handlers allow for wildcard routing at a given module scope. Wildcard handlers support 'typed' url argument mapping, as denoted by the arguments annotation.

In addition, wildcard handlers also support optional arguments. As specific with TypeScript's ? syntax.

appex wildcard handlers require the following signature:

  • name - 'wildcard'
  • argument[0] - context
  • argument[n] - 1 or more arguments to be mapped from the url
  • returns - void (optional)
declare var console;

export module blogs {
	
	// url : http://[host]:[port]/blogs/2013/1/11   - matched
	// url : http://[host]:[port]/blogs/2013/01/11  - matched
	// url : http://[host]:[port]/blogs/2013/01/3rd - not matched - (see number annotation)
	// url : http://[host]:[port]/blogs/2013/01     - matched     - (see ? annotation)
	// url : http://[host]:[port]/blogs/2013        - not matched - (month is required)
    export function wildcard(context, year:number, month:number, day?:number) {
		
		console.log(year); 

		console.log(month);

		console.log(day);

        context.response.write('my blog')

        context.response.end(); 
    }
}

note: appex supports boolean, number, string and any annotations on wildcard arguments. if no annotation is specified, appex interprets the argument as a string. the type 'any' is also interpreted as string.

note: wildcard functions should be declared last in any module scope. this ensures other routes will be matched first.

### exporting functions

appex will only export functions prefix with the TypeScript 'export' declaration. Also, exported functions that reside in non exported modules will not be routed. Developers can use this to infer notions of public and private at the http level.

consider the following example:


// module is not exported, and is therefore private.
module private_module {
	
	// function is exported, yet private as a http endpoint due to the 
	// parent module being private.
	export function public_method () { }
	
	// function is not exported, and is private to this module.
	function private_method() { }
}

// function is not exported, and is therefore private.
function private_function() { }

// function is exported, and therefore publically accessible.
export function public_function   (context) { 
	
	// this function can invoke private functions.
	private_function(); // ok
	
	// calling exported method in private module
	private_module.public_method(); // ok

	// calling non exported method in private module
	// private_module.private_method(); // bad

	context.response.write('testing');

	context.response.end();
}
### routing functions

appex creates routes based on module scope and function name. consider the following:


// url: http://[host]:[port]/
export function index   (context:any) { /* handle route */ }

// url: http://[host]:[port]/about
export function about   (context:any) { /* handle route */ }

// url: http://[host]:[port]/contact
export function contact (context:any) { /* handle route */ }

export module services.customers {
	
	// url: http://[host]:[port]/services/customers/insert
	export function insert(context:any) : void { /* handle route */ }
	
	// url: http://[host]:[port]/services/customers/update
	export function update(context:any) : void { /* handle route */ }
	
	// url: http://[host]:[port]/services/customers/delete
	export function delete(context:any) : void { /* handle route */ }
}
### handling 404

Use wildcard functions to catch unhandled routes.

// http:[host]:[port]/
export function index   (context) { 

	context.response.writeHead(404, {'content-type' : 'text/plain'});

	context.response.write('home page');

	context.response.end();
}

// http:[host]:[port]/(.*)
export function wildcard(context, path) {

	context.response.writeHead(404, {'content-type' : 'text/plain'});

	context.response.write(path + ' page not found');
	
	context.response.end();
}
## developing with appex ### structuring projects

appex includes TypeScript's ability to reference source files with the 'reference' element. appex will traverse each source files references and include it as part of the compilation.

Developers can use this functionality to logically split source files into reusable components of functionality, as demonstrated below.

//---------------------------------------------------	
// file: app.js
//---------------------------------------------------

var appex = require('appex');

var app = appex ({ program : './index.ts' });

app.listen(3000);

//---------------------------------------------------	
// file: index.ts
//---------------------------------------------------

/// <reference path="pages.ts" />
/// <reference path="users.ts" />

//---------------------------------------------------	
// file: pages.ts
//---------------------------------------------------

// http://[host]:[port]/
export function index   (context) { /* handle request */ }

// http://[host]:[port]/about
export function about   (context) { /* handle request */ }

// http://[host]:[port]/contact
export function contact (context) { /* handle request */ }

//---------------------------------------------------	
// file: users.ts
//---------------------------------------------------

export module users {
	
	// http://[host]:[port]/users/login
	export function login  (context) { /* handle request */ }
	
	// http://[host]:[port]/users/logout
	export function logout (context) { /* handle request */ }
}

## additional resources

Keywords

FAQs

Package last updated on 10 Jul 2013

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