17 private links
WebPerl uses the power of WebAssembly and Emscripten to let you run Perl in the browser!
WebPerl does not translate your Perl code to JavaScript, instead, it is a port of the perl binary to WebAssembly, so that you have the full power of Perl at your disposal!
<script src="webperl.js"></script>
<script type="text/perl">
print "Hello, Perl World!\n"; # goes to JavaScript console by default
js('document')->getElementById('my_button')
->addEventListener('click', sub {
js('window')->alert("You clicked the button!");
} );
</script>
JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties.
JWT.IO allows you to decode, verify and generate JWT.
Werc is a minimalist web anti-framework built following the Unix and Plan 9 tool philosophy of software design.
Werc avoids the pain of managing collections of websites and developing web applications.
- Database free, uses files and directories instead.
- Written using the rc shell, leveraging the standard Unix/Plan 9 command toolkit.
- Minimize tedious work: eg., no need to ever write HTML, use markdown (or any other format) instead.
- Very minimalist yet extensible codebase: highly functional core is 150 lines, with extra functionality in modular apps.
Luminus is a Clojure micro-framework based on a set of lightweight libraries. It aims to provide a robust, scalable, and easy to use platform. With Luminus you can focus on developing your app the way you want without any distractions.