Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Determine the inheritance of template and style files.
Most HTML and CSS preprocessors use a synchronous API to access file system and don't use cache for already read files. It degrades performance and increases the time required to compile the code.
Also, when your project is very large and has a large number of dependencies between blocks (e.g. many mixins) — compiles all files of a project may take seconds or even minutes. This is unacceptable if you are working with a "watch" mode.
Solution?
This module allows you to compile only those files that depend on the changed file and require compilation.
For example, if you have the following files:
a.pug
— depends on b.pug
b.pug
c.pug
If you change the c.pug
file, then will be compiled only it. If you change the b.pug
file, then will be compiled a.pug
file.
$ npm i -D emitty
const emitty = require('emitty').setup('templates', 'jade');
emitty.scan().then(() => {
console.log(emitty.storage());
// {
// 'a.pug': {
// dependencies: ['components/b.pug'],
// ctime: new Date()
// },
// 'components/b.pug': {
// dependencies: [],
// ctime: new Date()
// }
// }
}
});
Creates API for emitty.
Parameter | Type | Default | Required | Description |
---|---|---|---|---|
directory | String | null | + | Directory to start from. |
language | String or Object | null | + | The settings for the language that you want to use. For more details see «Language» section. |
[options] | Object | {} | - | For more details see «Options» section. |
const emitty = require('emitty').setup('templates', 'pug');
Returns a snapshot of the Storage.
console.log(emitty.storage());
// {
// 'a.pug': {
// dependencies: ['components/b.pug'],
// ctime: new Date()
// },
// 'components/b.pug': {
// dependencies: [],
// ctime: new Date()
// }
// }
Returns the keys of the Storage.
console.log(emitty.keys());
// ['a.pug', 'components/b.pug']
Clears the Storage and loads the new data.
emitty.load({
'c.pug': {
dependencies: ['nope.pug'],
ctime: new Date()
}
});
// console.log(emitty.keys());
// ['c.pug']
Scans directory and updates the Storage. If you specify a filepath
, then only that file will be scanned. Also you can specify stats
of file (to avoid doing unnecessary actions inside emitty).
emitty.scan().then(() => {
// console.log(emitty.keys());
// ['a.pug', 'b.pug']
});
Returns all files that depends on the specified file.
emitty.scan().then(() => {
console.log(emitty.getDependencies('a.pug'));
// ['components/b.pug']
});
Returns True if A depends on B.
emitty.scan().then(() => {
console.log(emitty.getDependencies('a.pug'));
// ['components/b.pug']
console.log(emitty.checkDependencies('a.pug', 'components/b.pug'));
// true
console.log(emitty.checkDependencies('a.pug', 'nope.pug'));
// false
});
Is scan method, but for Stream and combines scan
+ resolver
.
Scans directory or file and updates the Storage. Then, if file in stream depends on the changed file — pass it further. Else skip it.
Warning
If you do not specify the filepath to the changed file, it will be the last file that has changed since the last scan.
const stream = emitty.stream();
stream.on('end', () => {
// console.log(emitty.keys());
// ['a.pug', 'b.pug']
});
stream.end();
Passes continue to stream only those files that need to be compiled.
Option | Type | Default | For Stream | Description |
---|---|---|---|---|
snapshot | Object | {} | - | You can load the previous state of the project in the Storage using this option. |
log | Function | console.log | + | The function that will be called if the file needs to be compiled. |
cleanupInterval | Number | null | - | Time interval over which the Storage will be cleared of obsolete items. Recommended for projects very big projects. |
makeVinylFile | Boolean | false | + | You can use gulp.src('patterns', { read: false }) to reduce access for filesystem. This option creates a Vinyl file within a Stream. |
basedir | String | null | - | The root directory of all absolute inclusion. |
scanner.depth | Number | 30 | - | The maximum number of nested directories to scan. |
scanner.exclude | String[] | ['.git', '**/node_modules', '**/bower_components'] | - | List of Glob-patterns for directories that are excluded when scanning. |
The emitty contains built-in configs for the following instruments:
jade
— now it's Pugpug
nunjucks
posthtml
— with posthtml-include
and/or posthtml-extend
plugin.sugarml
— with posthtml-include
and/or posthtml-extend
plugin.less
stylus
— indent based syntaxsass
scss
You can use them when you configure emitty:
const emitty = require('emitty');
const emittyJade = emitty.setup('templates', 'pug');
const emittySugarml = emitty.setup('templates', 'sugarml');
// ...
Instead of use built-in config you can specify your own config.
For example, config for Slm:
const emitty = require('emitty').setup('templates', {
extensions: ['.slm'],
matcher: /=?=\s(?:partial|extend)\(['"]([^'"]+)['"].*?\)/,
comments: {
start: '/',
end: ''
},
indentBased: true
});
Property | Type | Default | Required | Description |
---|---|---|---|---|
[extends] | String | null | - | The name of built-in config, which will be basis for this config. If you specify this property, you can specify other properties as needed. |
extensions | String[] | null | + | List of file extensions to be included in Storage when scanning. |
matcher | RegExp | null | + | Regexp to run on each line of source code to match dependency references. |
comments.start | String | null | + | The start of a comment. |
comments.end | String | null | + | The end of a comment. |
[indentBased] | Boolean | false | - | The syntax of the language is based on indentation? |
[partials] | Boolean | false | - | Add additional partials files (files with _ prefix, like Sass/SCSS) to dependencies. |
See the Releases section of our GitHub project for changelogs for each release version.
This software is released under the terms of the MIT license.
FAQs
Determine the inheritance of template and style files
We found that emitty 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
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.