stdlib icon indicating copy to clipboard operation
stdlib copied to clipboard

✨ Standard library for JavaScript and Node.js. ✨

Results 630 stdlib issues
Sort by recently updated
recently updated
newest added

### 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'...

Enhancement
RFC
Needs Discussion
REPL
priority: Normal
JavaScript
difficulty: 4

### 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...

Enhancement
RFC
Needs Discussion
difficulty: 3
REPL
priority: Normal
JavaScript

### 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...

Enhancement
RFC
Needs Discussion
REPL
priority: Normal
JavaScript
difficulty: 4

### 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]...

Enhancement
RFC
Needs Discussion
difficulty: 3
REPL
priority: Normal
JavaScript

### 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,...

Enhancement
RFC
Needs Discussion
difficulty: 3
REPL
priority: Normal
JavaScript

### 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...

Enhancement
RFC
Needs Discussion
REPL
priority: Normal
JavaScript
difficulty: 4

### 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...

Enhancement
RFC
Needs Discussion
difficulty: 3
REPL
priority: Normal
JavaScript

### 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...

Enhancement
RFC
Needs Discussion
difficulty: 3
REPL
priority: Normal
JavaScript

### 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...

Enhancement
RFC
Needs Discussion
difficulty: 3
REPL
priority: Normal
JavaScript

### 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...

RFC
Native Addons
Accepted
Good First Issue
priority: High
JavaScript
C