Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.
The npm package parse-author receives a total of 307,761 weekly downloads. As such, parse-author popularity was classified as popular.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.