Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
f
is a Functional Microservice Request Library. It's a zero-dependency module
that wraps HTTP(S) requests, intended for use with stateless, functional
microservices. It's built to work out-of-the-box with services created using
the stdlib functional microservice platform, but can be
configured to use any gateway (and associated platform or infrastructure provider).
f
also comes with a CLI tool to run functional microservices from your command
line (using the f
command) without having to use the Node.js REPL.
For usage in an existing Node.js project, add it to your dependencies:
$ npm install f
For access to the CLI, install f
globally using npm:
$ npm install f -g
Using Bower...
$ bower install poly/f
Or, simply copy web/f.js
to wherever you keep your vendor scripts and include
it as a script:
<script src="path/to/f.js"></script>
f
creates HTTP(S) requests following a custom specification that maps very
closely to function invocation you're used to (as if it were running in a
native environment). Let's say we have a functional microservice running on
stdlib that calculates great-circle distances given
two sets of coordinates using the Haversine formula.
The call to this service using f
, might look like this;
// Calculate distance from Toronto to San Francisco
const f = require('f');
f('polybit/distance/haversine')({
from: [43.65, -79.38],
to: [37.77, -122.42]
}, (err, result) => {
console.log(result); // logs 3645473 (metres!)
});
Usually when we make HTTP requests we think of querystring parameters, form-data,
urlencoded variables and of course, json. With f
, our goal is to standardize
the way functional microservices are invoked (and deal with parameters) by
referencing familiar concepts; function arguments and keyword arguments.
Arguments (args
) are passed to functions as an array of basic JSON types
(non-objects); number, boolean, string, null. Keyword arguments are allowed to
be anything JSON-serializable (Objects and Arrays). The basic structure for
function calls with f
is the following;
let fn = f('route/to/function');
fn(arg_1, ..., arg_n, {kwarg_1: val_1, ... kwarg_n: val_n}, callback);
This maps to an HTTP request with the following POST data in the body;
{
"args": [arg_1, ..., arg_n],
"kwargs": {
"kwarg_1": val_1,
...
"kwarg_n": val_n
}
}
Which should be interpreted by a functional microservice (server-side) as;
module.exports = (params, callback) => {
// params.args == [arg_1, ..., arg_n]
// params.kwargs == {kwarg_1: val_1, ..., kwarg_n: val_n}
callback(null, 'Hello World');
};
Note that every parameter is optional. It's up to whoever creates the microservice to lay out the expectation of which arguments / keyword arguments are supported, which can be done using descriptions on services like stdlib or GitHub.
f
can also be used from the command line. If you run:
$ npm install f -g
You can start running microservices immediately using:
$ f path/to/func arg1 arg2 --kwarg1 val1
This functionality can be mimicked using the library in Node.js by providing a second argument when referencing the function:
f('path/to/func', 'command')('arg1 arg2 --kwarg1 val1', callback);
To send raw file (Buffer
) data, simply provide 'file'
as a string to the
second argument when referencing the function:
f('path/to/func', 'file')(new Buffer(0), callback);
This will send POST data with exactly the Buffer
contents.
If you don't feel like using stdlib's gateway at https://f.stdlib.com/, simply configure the gateway as follows;
const f = require('f');
f.config.gateway = {
host: 'my.host',
port: 8080,
path: '/'
};
You can, alternatively, pass in custom configuration as a third parameter on a per-function basis.
let fn = f('path/to/func', 'json', {host: 'my.host', port: 8080, path: '/'});
fn(arg0, ..., callback);
Functional Microservices are tremendously useful for offloading computationally expensive tasks from your core infrastructure, or providing standardized functionality to many different systems (at the cost of a few ms of network latency).
An example would be image processing. Resizing, cropping and editing may not be
done frequently on your webserver, but when it does happen, it can slow everything
down. Offloading to a scalable, stateless microservice that your application simply
calls via the f
module is a simple solution.
Another example would be the haversine distance formula given above. You may have found a great npm package, but what if that service functionality needs to be shared across multiple applications written in different languages? Python and Ruby are both capable of making simple HTTP requests to a microservice, but do not share packages in common with the Node ecosystem. Microservices solve this problem.
We plan to have more SDKs out in the coming months, you can also run your microservices from the web. :)
You can find a list of available microservices on stdlib's search page,
where the f
team (Polybit Inc.) is hard at work creating a central repository
of microservices for the web. Feel free to test drive a basic service or create
your own.
You can create microservices using the stdlib CLI tools,
but microservice development is out of the scope of the f
package directly. It is handled on a platform and infrastructure provider basis.
The f
package is © 2016 Polybit Inc. and happily MIT licensed.
Go wild! Contributors welcome, but we ask that PRs don't introduce dependencies and mostly focus on bugfixes and usability.
We're actively working our buns off to build the future of cloud development, beginning with microservice adoption. We'd love your support!
Sign up for stdlib: A Standard Library for the Web.
Follow us on Twitter @polybit.
FAQs
Functional Microservice Request Library
The npm package f receives a total of 1,043 weekly downloads. As such, f popularity was classified as popular.
We found that f 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.