
Research
PyPI Package Impersonates SymPy to Deliver Cryptomining Malware
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.
load-options
Advanced tools
Load Assemble options from a config file, object, glob patterns, or any combination of those. Fallback on defaults if options aren't defined, or you can override or extend the defaults.

Load Assemble options from a config file, object, glob patterns, or any combination of those. Fallback on defaults if options aren't defined, or you can override or extend the defaults.
Install with npm:
npm i load-options --save-dev
Load options from an object or file.
Example:
Use the defaults:
var options = require('load-options')();
options {Object}:return {Object}Examples:
Extend the default options with user-defined options in .assemblerc.yml:
var options = require('load-options')('.assemblerc.yml');
Extend the default options by passing user-defined options directly:
var options = require('load-options')({layout: 'sidebar-left'});
Override defaults:
// Override a default with
var options = require('load-options')({plugins: ['foo/bar/*.js']});
// Override a default with an empty value
var options = require('load-options')({plugins: []});
Extend defaults using lodash templates. Just reference a property on the _default that corresponds to the option want to extend:
var loadOpts = require('load-options');
var options = loadOpts({
plugins: ['<%= _default.plugins %>', 'foo/bar/*.js']
});
// paths shortened using ~ to make the example more readable
{ dest: '_gh_pages',
assets: '_gh_pages/assets',
flatten: true,
engine: 'handlebars',
ext: '.html',
data: {},
plasma: {},
layoutdir: 'test/fixtures/templates/layouts',
layout: 'foo',
layoutext: '.hbs',
pages:
[ '~/test/fixtures/templates/pages/about.hbs',
'~/test/fixtures/templates/pages/index.hbs' ],
partials:
[ '~/test/fixtures/templates/partials/alert.hbs',
'~/test/fixtures/templates/partials/nav.hbs',
'~/test/fixtures/templates/partials/tooltip.hbs' ],
plugins: [],
middleware:
[ '~/test/fixtures/extensions/middleware/a.js',
'~/test/fixtures/extensions/middleware/b.js',
'~/test/fixtures/extensions/middleware/c.js' ],
helpers:
[ '~/test/fixtures/extensions/helpers/a.js',
'~/test/fixtures/extensions/helpers/b.js',
'~/test/fixtures/extensions/helpers/c.js' ],
mixins:
[ '~/test/fixtures/extensions/mixins/a.js',
'~/test/fixtures/extensions/mixins/b.js',
'~/test/fixtures/extensions/mixins/c.js' ],
extensions: 'test/fixtures/extensions',
templates: 'test/fixtures/templates',
filters:
[ '~/test/fixtures/extensions/filters/a.js',
'~/test/fixtures/extensions/filters/b.js',
'~/test/fixtures/extensions/filters/c.js' ],
_default:
{ dest: '_gh_pages',
assets: '_gh_pages/assets',
flatten: true,
engine: 'handlebars',
ext: '.html',
data: [ 'data/*.{json,yml}' ],
plasma: null,
layoutdir: 'test/fixtures/templates/layouts',
layout: 'default',
layoutext: '.hbs',
pages: [ 'test/fixtures/templates/pages/*.hbs' ],
partials: [ 'test/fixtures/templates/{partials,includes}/*.hbs' ],
plugins: [ 'test/fixtures/extensions/plugins/*.js' ],
middleware: [ 'test/fixtures/extensions/middleware/*.js' ],
helpers: [ 'test/fixtures/extensions/helpers/*.js' ],
mixins: [ 'test/fixtures/extensions/mixins/*.js' ] } }
src
Until this issue is fixed in plasma, don't define a src field in your config file, since Plasma will try to expand it.
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
This file was generated by verb-cli on June 11, 2014.
FAQs
Load Assemble options from a config file, object, glob patterns, or any combination of those. Fallback on defaults if options aren't defined, or you can override or extend the defaults.
The npm package load-options receives a total of 1 weekly downloads. As such, load-options popularity was classified as not popular.
We found that load-options 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.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.

Product
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.