
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Command line interpreter for haskind.
This tool is used to explore the haskind library. haskind modules are loaded in the repl for you from the get go!
$ npm install -g hkci
$ hkci
Functions can be found in their appropriate module. To load functions directly
into the repl context, call it with module().
λ > Data.Maybe.Just('haskind')
{ just: 'haskind' }
λ > module(Data.Maybe)
[ 'Just',
'Nothing',
'maybe',
'isJust',
'isNothing',
'fromJust',
'fromMaybe',
'listToMaybe',
'maybeToList',
'catMaybes',
'mapMaybe' ]
λ > foo = [Just('haskind'), Nothing(), Just(3)]
[ { just: 'haskind' }, { nothing: null }, { just: 3 } ]
λ > Data.Maybe.catMaybes(foo)
[ 'haskind', 3 ]
Various options are available, use hkci -h for more info.
Files can be loaded into the repl using both the command line and through REPL commands.
hkci relative/path.js
Loaded files can then be reloaded using .reload or .r for short. To load
another file, use .load [filename] or .l [filename].
You can unlock more features using an rc file. options include:
{
"prompt": "Main> ",
"vim": true,
"bindings": {
"insert": [ "kj", "esc" ]
},
"options": {
"Enum": true,
"Ix": true
}
}
Copyright © 2016 Erik Sutherland. All rights reserved.
FAQs
Command line interpreter for haskind
The npm package hkci receives a total of 6 weekly downloads. As such, hkci popularity was classified as not popular.
We found that hkci 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.