Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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 ng - 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
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)
{
//ng is a listener that accepts a request & reponse
require('http').createServer(ng).listen(1337)
//Load your application here
}
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')
})
ng enables full-stack development by allowing you to access node.js within your services.
//Require is a node specific function
.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);
})
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's only make sense to be on the client
.controller('example', function($scope, os)
{
$scope.os = os
})
Each method includes a client and server property if you wish to register the function in only one place.
//I will only be available on the server
.factory.server('dependent', function($q)
{
var q = $q.defer()
}
//I will only be available on the client
.factory.client('dependent', function($q)
{
var q = $q.defer()
}
//I am equivalent to the two factories above
.factory('dependent', function($q)
{
var q = $q.defer()
}
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)
{
//code to store the access token in a session
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')
//Save access token to the database
return access_token
}
}
}
Almost everything works exactly like angular including dependency injection & decorators. Things that don't work on the server are - understandably - $location, $document, & $window
//This works on both the client and server
.factory('dependent', function($q)
{
var q = $q.defer()
}
//This works on the client but not the server
.factory('dependent', function($window)
{
$window.alert("Can I alert on the server?")
}
There are two non-angular (ng-only) methods:
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)
{
//ng.toString() will concatenate all modules, replacing
//the need to specify each one manually. To do it the
//manual way replace ng with the three lines below. Note
//that modules are automatically enclosed in script tags
//ng.module('ng'),
//ng.module('ngRoute'),
//ng.module('example'),
response.data = response.data ||
[
"<html ng-app='example'>",
"<head>",
ng,
"</head>",
"<body>",
"<div class='ng-view'></div>",
"</body>",
"</html>"
]
.join('\n')
return response
}
}
})
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.
//This is what the os factory looks like on the client
.factory('os', function($rpc)
{
//ng's $rpc sends an $http request to the server
//and will return require('os') asyncronously
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)
{
//Uncomment lines below to see how a custom transform works
//console.log('I am transforming', type, name)
//console.log('Function to transform & return', fn.toString())
//console.log('Module API available as this', this)
return fn //I didn't do anything: kept function as-is
})
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)
{
//No injection array needed if nothing to inject
if ( ! fn.length)
{
return fn
}
//Make an array of args with annotate, then manually append function's string
return JSON.stringify(ng.injector().annotate(fn)).replace(']', ','+fn+']')
})
FAQs
Unknown package
The npm package ng receives a total of 7,957 weekly downloads. As such, ng popularity was classified as popular.
We found that ng demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.