
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.
reverse-proxy-schematic
Advanced tools
Angular schematic for a development SSL wildcard reverse-proxy
Angular schematic for a development SSL wildcard reverse-proxy
It will allow you to serve http://localhost:4200 from a secured local domain like https://example.localhost. You can also add subdomains such that http://localhost:4201 will be served from https://subdomain.example.localhost.
/path/to/reverse-proxy-schematicnpm link /path/to/reverse-proxy-schematic
ng g /path/to/reverse-proxy-schematic/src/collection.json:proxy --hostname="example.localhost" --apiPort="5000" --apiRoute="api"
The apiPort and apiRoute args are optional and default to 5000 and api, respectively. If using cloud functions for the backend, you can provide the locally served URL (ex: 5000/example-com/us-central1) to the apiPort.
proxy folder to the root of your workspacegenerate.proxy.cert and proxy scripts to package.jsonproxy/cert/proxy.csr.cnf (change [COUNTRY CODE] to US and so on)npm run generate.proxy.cert/proxy/cert/ssl/rootCA.pem to your browser's Trusted Root Certification Authoritiesstart.): scripts: {
//
"start.app1": "ng serve --project=app1 --host=example.localhost --port=4200",
"start.app2": "ng serve --project=app2 --host=subdomain.example.localhost --port=4201"
}
Then npm run proxy (or npm run proxy -- -s), npm run start.app1, npm run start.app2 and open https://example.localhost
FAQs
Angular schematic for a development SSL wildcard reverse-proxy
We found that reverse-proxy-schematic 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.