sequential shows JavaScript code execution
var i=5/4;
i++;
console.log(i);
// > 2.25
The purpose of sequential is to provide an environment to show JavaScript code execution in a browser.
sequential gives JavaScript authors the means to write the most concise and most natural (i.e. sequential) script to present any JavaScript work.
A typical piece consists of all or some of those parts:
- A comment describing what the code is about
- The load function to access any external JavaScript library (commonly relying on CDN services like rawgit, cdnjs, jsdelivr, unpkg and others)
- JavaScript code to set a use case.
- console.log calls to display the outcome.
Those are bigger beasts than sequential: fully fledged solutions covering all aspects of Web Development (HTML, CSS, JavaScript). Instead, sequential focuses only on JavaScript execution without involving (as mush as possible) any DOM object.
sequential is a complete client side solution, meaning that everything is running on the browser. The back-end (server) is only responsible to serve static resources (HTML, CSS, JavaScript and images)
It's a misty one but those are a few things I'd like to have:
- Ability to easily embed on external site (e.g. IFrame , embed.ly, script )
- Ability to compare/diff executions (i.e. to highlight differences between browsers)
Report any issue using GitHub and use notifications to track progress on them.
Want to hack on this project? Any kind of contribution is welcome! I am particularly interested in any JavaScript snippet you might want to share.
This project is licensed under the MIT license.