stdlib
stdlib copied to clipboard
✨ Standard library for JavaScript and Node.js. ✨
### Description This RFC proposes adding support for eager evaluation of side-effect free code in the REPL. E.g., ``` In [1]: [ 'foo', 'bar', 'beep' ].sort() [ 'bar', 'beep', 'foo'...
### Description This RFC proposes adding support for signature argument hints in the REPL. The idea is to extend the preview completion functionality introduced in https://github.com/stdlib-js/stdlib/pull/1832 to display function and...
### Description This RFC proposes adding syntax highlighting to the REPL. Currently, when a user types commands in the REPL, no syntax highlighting is applied. It would be nice to...
### Description This RFC proposes adding support for displaying command history in the REPL. The behavior would be similar to that in IPython: https://ipython.readthedocs.io/en/stable/interactive/magics.html?highlight=magic#magic-history Potential command signature: ``` history( [options]...
### Description This RFC proposes changing the default behavior in the REPL such that, when hitting the up/down arrow, an entire command is inserted, rather than just a line. Currently,...
### Description This RFC proposes adding support for displaying tabular data in the REPL. Possible signature: ``` table( data[, n] ) ``` It could work in a manner similar to...
### Description This RFC proposes adding support in the REPL for bookmarking directories. Currently, in order to move around the file system, one needs to manually set the current working...
### Description This RFC proposes adding built-in support for searching within the stdlib REPL environment. Something along the lines of ``` In [1]: search( 'absolute value' ) ``` While the...
### Description This RFC proposes adding support for displaying suggested corrections in the REPL when a user enters an identifier which does not exist. This functionality would be similar to...
### Description This RFC proposes refactoring [`@stdlib/blas/ext/base/dsnansumpw`](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/dsnansumpw) to follow current project conventions. These conventions are outlined in more detail in https://github.com/stdlib-js/stdlib/issues/788. Namely, we want to migrate from C++ add-on interfaces...