Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Get tired of having to fool with regex to find a value in between two tags?
Example: <title>Get this value</title>
This is a lightweight tool that will do just this for you, as well as replace those values if need be.
To install:
npm install needler
Example of usage for finding a value in between something:
var needler = require('../lib');
var options = {
haystack: 'The word inside of <bold>tag</bold> will be returned.',
header: '<bold>',
footer: '</bold>'
}
var result = needler.find(options, function (error, match) {
if (error) {
console.log(error);
}
// Will return 'tag'
console.log(match);
});
Example of usage for replacing a value in between something:
var needler = require('../lib');
var options = {
haystack: 'The word after <this>WOOHOO</this>.',
replace: 'it was changed!',
header: '<this>',
footer: '</this>',
flags: 'i' //g, i, m, etc. Can be combined.
}
var result = needler.replace(options, function (error, result) {
if (error) {
console.log(error);
}
// Will return 'The word after <this>it was changed!</this>.'
console.log(result);
});
Needler is also compatible with es6 importing. You can do so like below:
import needler from 'needler';
import needler from 'needler';
let options = {
haystack: 'The word after <this>WOOHOO</this>.',
replace: 'it was changed!',
header: '<this>',
footer: '</this>',
flags: 'i' //g, i, m, etc. Can be combined.
}
let result = needler.replace(options, (error, result) => {
if (error) {
console.log(error);
}
// Will return 'The word after <this>it was changed!</this>.'
console.log(result);
});
haystack (find, replace) [string | required] - String that you will be searching.
replace (replace) [string | required] - String that you will be replaces the value with.
header (find, replace) [string | required] - String before the value you are searching for. For instance -
<title>value</title>
: In this example, the header would be<title>
footer (find, replace) [string | required] - String after the value you are searching for. For instance -
<title>value</title>
: In this example, the header would be</title>
flags (replace) [string | required] - String that holds the flags for RegExp. (
i
,g
,m
). These can be combined like so:gim
. For more information on flags, Visit this Website
FAQs
A quick tool to find a needle in a haystack
The npm package needler receives a total of 6 weekly downloads. As such, needler popularity was classified as not popular.
We found that needler 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.