
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
ALF can be installed with Bower or npm. We highly recommend using NPM instead of Bower, as most bundlers work better with NPM.
npm install alf
bower install alf
There are 2:
alf.js
- Default. Defaults to depending on jQuery (browser support), but also works with Zepto ((browser support). You may switch to Zepto in your bundler config (see below).alf-deps.js
- Bundled with Zepto. All-in-one bundle with all dependencides included. Can also be included in your own app-bundle using a module bundler, but that's only recommended if your app is centered mainly around ALF. Consider using alf.js
if you have overlapping dependencies.ALF is using the UMD pattern. This means that it will look for dependencies and register itself in the system it finds first of the following:
We recommend using NPM, but if you have to use Bower, there's some more info at the webpack site about how you configure it.
Example config using Webpack with NPM
module.exports = {
entry: {
'my-bundle': "./my-app.js",
},
output: {
path: __dirname + '/dist',
filename: '[name].js',
libraryTarget: 'var',
library: 'MyApp'
},
resolve: {
root: [
// Use this to make Webpack always prefer locally installed modules instead of the ones inside ALF. This will prevent including dependencies twice in your bundle (like lodash)
path.resolve(__dirname, 'node_modules'),
],
alias: {
// This is recommended, as it will prevent submodules from using underscore when lodash is available. Will reduce the file size.
underscore: 'lodash',
// Use to replace with zepto when using ALF without dependencies
jquery: 'npm-zepto'
}
}
};
2.7.1 - 2017-08-01
FAQs
Aptoma Layout Framework
The npm package alf receives a total of 4 weekly downloads. As such, alf popularity was classified as not popular.
We found that alf demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.