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.
@nguniversal/express-engine
Advanced tools
This is an Express Engine for running Angular Apps on the server for server side rendering.
To use it, set the engine and then route requests to it
import * as express from 'express';
import { ngExpressEngine } from '@universal/ng-express-engine';
// Set the engine
app.engine('html', ngExpressEngine({
bootstrap: ServerAppModule // Give it a module to bootstrap
}));
app.set('view engine', 'html');
app.get('/**/*', (req: Request, res: Response) => {
req: req,
res: res
});
Extra Providers can be provided either on engine setup
app.engine('html', ngExpressEngine({
bootstrap: ServerAppModule,
providers: [
ServerService
]
}));
The Bootstrap module as well as more providers can be passed on request
app.get('/**/*', (req: Request, res: Response) => {
req: req,
res: res,
bootstrap: OtherServerAppModule,
providers: [
OtherServerService
]
});
The Request and Response objects are injected into the app via injection tokens. You can access them by @Inject
import { Request } from 'express';
import { REQUEST } from '@universal/ng-express-engine';
@Injectable()
export class RequestService {
constructor(@Inject(REQUEST) private request: Request) {}
}
If your app runs on the client side too, you will have to provide your own versions of these in the client app.
You can also use a custom callback to better handle your errors
app.get('/**/*', (req: Request, res: Response) => {
req: req,
res: res
}, (err: Error, html: string) => {
res.status(html ? 200 : 500).send(html || err.message);
});
FAQs
Express Engine for running Server Angular Apps
The npm package @nguniversal/express-engine receives a total of 40,662 weekly downloads. As such, @nguniversal/express-engine popularity was classified as popular.
We found that @nguniversal/express-engine 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.