Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Filter the output of the elm compiler
$ npm install --global elm-filt
$ elm-filt --help
Filter the output of the elm compiler
Usage
$ elm-filt <source> --keep <elm specifier> [--keep <elm specifier>]...
Elm Specifiers
author/pkg:Module.name Keep the elm function or variable called "name"
in module "Module" in package installed using
`elm install author/package`.
Module.name Same as above for elm functions or variables
defined within your project.
Options
--keep, -k Elm functions to include in JavaScript output
--version, -v Print version and quit
--help, -h Display this information and quit
Examples
$ elm-filt elm.js --keep Main.main --keep Main.update
// For Main.main
var author$project$Main$main = elm$browser$Browser$document(
{
init: function (_n0) {
return author$project$State$initialState;
},
subscriptions: author$project$Main$subscriptions,
update: author$project$State$update,
view: author$project$Main$view
});
// For State.update
var author$project$State$update = F2(
function (msg, model) {
switch (msg.$) {
case 'Noop':
return GlobalWebIndex$cmd_extra$Cmd$Extra$pure(model);
case 'ChangeStage':
...
As described by elm-filt --help
, an elm specifier is a string that uniquely describes an elm function or variable in some elm module.
An elm specifier takes the form [author/package:]Module1[. ...[ModuleN]].functionOrVariableName
.
If [author/package:]
is omitted, the elm specifier refers to an elm function or variable in the current application.
There must be at least one module name and each should be followed by a dot, the package specifier is separated from the first module name by a colon.
Examples of elm specifiers include
elm/core:String.fromFloat
,Main.main
andmdgriffith/elm-ui:Element.text
.For elm functions and variables in the current application, the elm compiler will generate JavaScript as if they function or variable was in a package called
author/project
.
Harry Sarson |
FAQs
Filter the output of the elm compiler
The npm package elm-filt receives a total of 1 weekly downloads. As such, elm-filt popularity was classified as not popular.
We found that elm-filt 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.