
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
replace-api-path
Advanced tools
npm i replace-api-path --save-dev./node_modules/.bin/replace-path到faas命令./node_modules/.bin/replace-path s=source-path d=dist-path
s url-map文件的路径 可选 默认为 '/config/urls.js'
d shell脚本生成目录 可选 默认为 '/dist'
const URL_MAP = {
alpha: {
SSO: 'alpha-sso',
API_PREFIX: 'alpha-httpizza'
},
beta: {
SSO: 'beta-sso',
API_PREFIX: 'beta-httpizza'
},
prod: {
SSO: 'prod-sso',
API_PREFIX: 'prod-httpizza'
}
}
const CURRENT_ENV = 'alpha'
const SSO = URL_MAP[CURRENT_ENV].SSO
const API_PREFIX = URL_MAP[CURRENT_ENV].API_PREFIX
const prodReplace = [
{
from: 'a.com',
to: 'b.com',
type: 'html'
},
{
from: 'e.com',
to: 'f.com',
type: 'html'
}
]
const testReplace = [
{
from: 'c.com',
to: 'd.com',
type: 'html'
},
{
from: 'g.com',
to: 'h.com',
type: 'js'
}
]
module.exports = { SSO, API_PREFIX, URL_MAP, prodReplace, testReplace }
URL_MAP中的prod对应的是production环境,其余的对应faas的测试环境
FAQs
根据定义好的url生成一份修改打包文件路径的shell脚本
The npm package replace-api-path receives a total of 1 weekly downloads. As such, replace-api-path popularity was classified as not popular.
We found that replace-api-path 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.