Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
parse-author
Advanced tools
Parse an author, contributor, maintainer or other 'person' string into an object with name, email and url properties following npm conventions.
The parse-author npm package is a utility for parsing author strings in package.json files. It helps in extracting structured information such as name, email, and URL from a single author string.
Parse Author String
This feature allows you to parse a single author string into an object containing the name, email, and URL. The code sample demonstrates how to use the parse-author package to parse an author string and log the resulting object.
const parseAuthor = require('parse-author');
const author = 'John Doe <john.doe@example.com> (http://johndoe.com)';
const parsed = parseAuthor(author);
console.log(parsed);
The author-regex package uses regular expressions to parse author strings. While it provides similar parsing capabilities, it is more focused on the regex approach and might require additional handling to achieve the same level of convenience as parse-author.
Parse a string into an object with
name
,url
properties following npm conventions. Useful for theauthors
property in package.json or for parsing an AUTHORS file into an array of authors objects.
Install with npm:
$ npm install --save parse-author
var parse = require('parse-author');
Works with a flexible range of formats, any of the properties can be used or missing:
Name
Name <email> (url)
Name <email>(url)
Name<email> (url)
Name<email>(url)
Name (url) <email>
Name (url)<email>
Name(url) <email>
Name(url)<email>
Name (url)
Name(url)
Name <email>
Name<email>
<email> (url)
<email>(url)
(url) <email>
(url)<email>
<email>
(url)
var author = parse('Jon Schlinkert <jon.schlinkert@sellside.com> (https://github.com/jonschlinkert)');
console.log(author);
//=> {name: 'Jon Schlinkert', email: 'jon.schlinkert@sellside.com', url: 'https://github.com/jonschlinkert'}
console.log(parse('Jon Schlinkert (https://github.com/jonschlinkert)'));
//=> {name: 'Jon Schlinkert', url: 'https://github.com/jonschlinkert'}
console.log(parse('Jon Schlinkert <jon.schlinkert@sellside.com>'));
//=> {name: 'Jon Schlinkert', email: 'jon.schlinkert@sellside.com'}
console.log(parse(''));
//=> {}
author
string into an object following npm conventions. | homepagename
, email
and url
properties following… more | homepagename <email> (url)
. | homepagePull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Commits | Contributor |
---|---|
14 | slang800 |
12 | jonschlinkert |
1 | MitMaro |
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Jon Schlinkert
Copyright © 2017, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.4.3, on March 08, 2017.
FAQs
Parse an author, contributor, maintainer or other 'person' string into an object with name, email and url properties following npm conventions.
We found that parse-author 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.