ng
full-stack angular with no dependencies
Developers should not have to use different frameworks to build frontend apps and their backend apis. With node.js came full-stack javascript, now comes a lightweight, elegant, full-stack framework.
Warning! ng is pre-alpha, but is being built for production with sponsorship by Pook-n-Cheek. If you have suggestions or are interested in contributing, email adam at adam.kircher@gmail.com
Browse ng on github or install on npm
Start the server
Enter in the url or file path of module dependencies. ng will load them first
var modules =
{
ng:'//ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.js',
ngRoute:'node_modules/ng.cdn/1.2.0-route.js'
}
require('ng')(modules, function(ng)
{
require('http').createServer(ng).listen(1337)
}
It's just angular...
ng's api mirrors angular's api as closely as possible. In fact, the global api is exactly the same: ng.toJson, ng.fromJson, ng.isDefined, etc are all available. The module api is very similar as well
ng.module('example', ['ngRoute'])
.factory('example', function()
{
return ng.isString('Hi! I am identical on both the server and the client')
})
Node.js:
ng enables full-stack development by allowing you to access node.js within your services.
.factory('os', function()
{
return require('os')
})
utilizing node's require, it is easy to build a modular application using external npm modules
.factory('third-party', require('ng.thirdparty').factory)
.directive('third-party', require('ng.thirdparty').directive)
here we leverage node's readFileSync to load our templates
.config(function($routeProvider, $locationProvider)
{
$routeProvider
.when('/', {
template: require('fs').readFileSync('view/splash.html'),
controller: 'splashCtrl'
})
.when('/example',
{
template:require('fs').readFileSync('view/example.html'),
controller: 'exampleCtrl'
})
$locationProvider.html5Mode(true);
})
Default location:
Config, run, provider, factory, & service are all put on both the client and server. Some services, however, such as controllers, directives, and animations are only available on the client.
.controller('example', function($scope, os)
{
$scope.os = os
})
Specifying location:
Each method includes a client and server property if you wish to register the function in only one place.
.factory.server('dependent', function($q)
{
var q = $q.defer()
}
.factory.client('dependent', function($q)
{
var q = $q.defer()
}
.factory('dependent', function($q)
{
var q = $q.defer()
}
Asymmetry:
Using the client & server properties in tandem, one can create an injectable service that acts differently on the client and on the server, as in this authentication example below.
.factory.client('login', function($http)
{
return function(id, password)
{
var promise = $http.get('/rpc/login?verify["'+id+'","'+password+'"]')
return promise.then(function(access_token)
{
return access_token ? true : false
})
}
})
.factory.server('login', function(data)
{
var hmac = require('crypto').createHmac
return
{
verify: function(id, password)
{
var access_token = hmac('sha256', id).update(password).digest('hex')
return access_token
}
}
}
Compatibility:
Almost everything works exactly like angular including dependency injection & decorators. Things that don't work on the server are - understandably - $location, $document, & $window
.factory('dependent', function($q)
{
var q = $q.defer()
}
.factory('dependent', function($window)
{
$window.alert("Can I alert on the server?")
}
... additions to angular
There are two non-angular (ng-only) methods:
- .interceptor() adds middleware
- .transform() pre-processes functions
Interceptors:
ng - like many node frameworks - uses middleware to process and respond to incoming requests. ng uses angular's interceptor api to build a middleware stack. Register middleware using the module's interceptor method. You will need at least one interceptor to serve your application
.interceptor(function()
{
return {
response:function(response)
{
response.data = response.data ||
[
"<html ng-app='example'>",
"<head>",
ng,
"</head>",
"<body>",
"<div class='ng-view'></div>",
"</body>",
"</html>"
]
.join('\n')
return response
}
}
})
Transforms:
In the previous os factory and routing config, we showed you a little magic. How do we make these functions that contain node-specific code run on a browser where node is not available?
Factories: Actually the os factory - unlike the other factory examples - will run only on the server. However, ng automatically creates a factory of the same name and identical api on the client. This "twin" client factory simply calls the server factory via an http request and the result is returned to the client. Since this all happens automatically, the client functionality appears identical to the server's.
.factory('os', function($rpc)
{
return $rpc('os', '0', 'trigger')
})
Templates: Something similar happens in the routing config. The routing config is executed on the server as soon as ng is started. Once loaded on the server, the templates are written to the client module before it is served by the interceptor. The template will simply appear in the client's config.
Sound complicated? It's not! ng uses a very elegant api exposed as the module's transform method. ng has built in transforms for making client-side factories - like the os example - and filling in templates - like the routing config - but allows you to create your own transforms as well.
.transform(function(fn, type, name)
{
return fn
})
Transforms are incredibly powerful. This simple transform automatically makes your code minification-safe by surrounding every client function with an angular inline injection array. Now that's power!
.transform.client(function(fn, type, name)
{
if ( ! fn.length)
{
return fn
}
return JSON.stringify(ng.injector().annotate(fn)).replace(']', ','+fn+']')
})
changes
- renamed parse -> transform
- renamed stack -> interceptor
- moved transform & interceptor from the global api to module api
- simplified the api for the logger
todos
- Many, many ideas. Feel free to email me suggestions!
- More stock middleware, gzip etc, and more stock transforms
- Make $location work on server side functions (send header redirect)
- Testing API. Any good ideas of how to integrate?
- Make namespace use self-executing function rather than setting a global var
- Rpc should allow http.get to be replaced with other protocols (web socket) or methods (post).
related projects
- ng.data: simple getter/setter for data persistence
- ng.seed: create a modular ng application using npm packages
- ng.cql: realtime cassandra database syncing
- ng.auth: example authentication using ng interceptors
- ng.crud: example demonstrating a simple crud application using ng.seed
- ng.style: alert and input helpers for use with twitter bootstrap