Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Pope is a fast, minimal and micro template engine for strings only, it plays well where you want to embed micro templates inside your module.
pope
is not the default export, instead exported as a property on the object.
const pope = require('pope')
const { pope } = require('pope')
const { pope } = require('pope')
pope('There are {{count}} emails in your inbox', { count:20 })
const { pope } = require('pope')
pope('My name is {{profile.name}} and age is {{profile.age}}', { profile: { name:'virk', age: 26 } })
const { pope } = require('pope')
pope('There are {{0}} emails in your inbox', [20])
Pulls the nested/flat values from an object. It is similar to lodash.get
method.
const { prop } = require('pope')
prop({ count:20 }, 'count') // 20
prop({profile: { name:'virk', age: 26 }}, 'profile.name') // virk
prop([20], '0') // 20
prop({profile: { validate: /^[A-Z][a-z]+/} }, 'profile.validate') // /^[A-Z][a-z]+/
You can also pass an options object to define the interpolation behavior.
Do not replace the undefined values with an empty string.
const { pope } = require('pope')
pope('There are {{0}} emails in your inbox', {}, {
skipUndefined: true
})
// returns - There are {{0}} emails in your inbox
Throw exception when a undefined value is found. throwOnUndefined
gets priority over skipUndefined
if both are defined.
const { pope } = require('pope')
pope('Hello {{ username }}', {}, {
throwOnUndefined: true
})
// throws exception
{
message: 'Missing value for {{ username }}',
key: 'username',
code: 'E_MISSING_KEY',
stack: '.....'
}
FAQs
Zero dependency micro templating engine for strings only.
The npm package pope receives a total of 4,546 weekly downloads. As such, pope popularity was classified as popular.
We found that pope 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.