
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
A Node.js utility library for easily removing, extracting, and manipulating comments in code strings with support for popular programming languages such as JavaScript, Python, and etc.
cmtu - removing comments from code string has never been this easy.
Cmtu is a Node.js package that helps you easily remove, extract, and magic comments from code strings.
Built with TypeScript and has full type support.
Supports the most popular programming languages like Python, JavaScript, etc. out of the box.
Please consider following this project's author, Sina Bayandorian, and consider starring the project to show your :heart: and support.
Install with npm:
$ npm install --save cmtu
const cmtu = require('cmtu');
// * create and configure a cmtu object
const jsCmtu = cmtu(cmtu.Languages.JS.resolver);
const jsCode = `
/*
this is a multi-line JS comment
*/
const callout = 'this is not a comment';
// this is a single line js comment
`;
const codeWithNoComments = jsCmtu.strip(jsCode);
console.log(codeWithNoComments, codeWithNoComments.length);
see built-in languages for a list of all built-in languages
returns a cmtu-object configured based on the args passed to it.
Params
resolver : Resolver
options : optional - Options
stringSensitive : boolean | undefined
true will ignore strings that include a comment based on the provided string literalsstringLiterals : string[] | undefined
defines the list of string literals - characters that a string start and end with
stringSensitive is set to truestringSensitive is set to trueexclude : RegExp[] | undefined
Returns
Example
// initialize a pre-configured cmtu-object - jsCmtu
const jsCmtu = cmtu(cmtu.Languages.JS.resolver);
const jsCode = `
/*
this is a multi-line JS comment
*/
const callout = '// this is not a comment';
// this is a single line js comment
`;
const { strip, extract, magic } = jsCmtu;
// in this case the callout value will be included
// even though it's not an actual comment and is
// a string because this instance the cmtu object
// exposes methods that are not string sensitive
// each of these methods is explained below
// at the cmtu-object section
const comments = jsCmtu.extract(jsCode);
console.log(comments);
returns a cmtu-object configured based on the args passed to it - the difference however is that methods exposed by this cmtu-object are stringSensitive meaning that in the rare cases where your strings might include comments themselves, these methods can understand the difference. Take a look at the example below:
Params
resolver : Resolver
options : optional - Omit<Options, 'stringSensitive'>
stringLiterals : string[] | undefined
defines the list of string literals - characters that a string start and end with
stringSensitive is set to truestringSensitive is set to trueexclude : RegExp[] | undefined
Returns
Example
// initialize a pre-configured cmtu-object - jsCmtu
const jsCmtu = cmtu.stringSensitive(cmtu.Languages.JS.resolver);
const jsCode = `
/*
this is a multi-line JS comment
*/
const callout = '// this is not a comment';
// this is a single line js comment
`;
const { strip, extract, magic } = jsCmtu;
// in this case the callout value won't be included
// as it's not an actual comment and is a comment
// inside of a srting
// each of these methods is explained below
// at the cmtu-object section
const codeWithNoComments = jsCmtu.strip(jsCode);
console.log(codeWithNoComments, codeWithNoComments.length);
you can customize cmtu to use it for languages that are not part of cmtu.Languages by default, for example:
// note that python is included in cmtu.Languages, and
// this is just an example to help you understand how
// to customize cmtu for your own use cases
const pyCode = `
# this is a comment in python
callout = "// this is not a comment in python"
#! python comment to be excluded
`;
// in order to customize the returned cmtu object
// we need to pass a proper resolver for python
// regex string to match python comments
const pyResolver = '#.*';
const pyStringLiterals = ["'", '"', "'''", '"""'];
const pyCmtu = cmtu.stringSensitive(
pyResolver,
{
stringLiterals: pyStringLiterals,
exclude: [/#!.*/] // optional
}
);
const { strip, extract, magic } = pyCmtu;
console.log(extract(pyCode));
console.log(strip(pyCode));
console.log(magic(pyCode));
type Resolver =
| string
| { block: string }
| { inline: string }
| { block: string; inline: string };
type LanguageName = 'JS' | 'CSS' | 'HTML' | 'CPP' | 'GO' | 'PYTHON' | 'PHP';
// support for php multi-line strings is lacking
// a good idea is to use a regex to exclude the
// comments that are within multi-line strings
type Options = {
stringSensitive?: boolean;
stringLiterals?: string[];
exclude?: RegExp[];
};
// 1- methods exposed by any configured cmtu object
// 2- return type of cmtu(...) and cmtu.stringSensitive(...)
{
// returns a string with with its comments stripped
strip: (code: string) => string;
// returns an array of the stripped comments
extract: (code: string) => string[];
// returns a tuple [comment-stripped string, stripped comments]
magic: (code: string) => [string, string[]];
}
FAQs
A Node.js utility library for easily removing, extracting, and manipulating comments in code strings with support for popular programming languages such as JavaScript, Python, and etc.
The npm package cmtu receives a total of 30 weekly downloads. As such, cmtu popularity was classified as not popular.
We found that cmtu 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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.