
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@flowaccount/scully-plugin-angular-delay
Advanced tools
I wrote this as an :paperclip: `angular-paperclip` :paperclip: experiment from the talk by **Misko Hevery (@mhevery)** from the [Keynote in NGCONF 2019](https://nitayneeman.com/posts/all-talks-from-ng-conf-2019/#keynote-1)
I wrote this as an :paperclip: angular-paperclip :paperclip: experiment from the talk by Misko Hevery (@mhevery) from the Keynote in NGCONF 2019
It is to help demonstrate the power of Resuming states when rendering angular applications on the client-side which is already pre-rendered from the server-side. In this case, using scully.
By delaying the Angular application from bootstrapping, I am allowing clients to interact with the site before rendering the Angular javascript codes, hence reducing the Time to interaction metrics for performance calculated by lighthouse.
However the states to be resume have to be manually put in by using State Decorators
Read more at this article --> Angular Paperclip Experiment
To install this library with npm run
npm install @flowaccount/scully-plugin-angular-delay --save-dev
or with yarn
yarn add @flowaccount/scully-plugin-angular-delay --dev
scully.config.ts fileimport { getDelayAngularPlugin } from '@flowaccount/scully-plugin-angular-delay';
const postRenderers = [
getDelayAngularPlugin({
routesBlacklist: [
{ route: '/pricing', removeAngular: false },
{ route: '/functions', removeAngular: true }
],
delayMilliseconds: 1500
})
];
export const config: ScullyConfig = {
routes: {},
defaultPostRenderers: postRenderers
};
const postRenderers = [
getDelayAngularPlugin({
tsConfigPath: '../../tsconfig.json',
distFolder: '../../dist/app'
})
];
Build your app with the --stats-json flag enabled as the plugin needs to know which assets have been build for your app. Then just run the Scully command.
yarn ng build --configuration=prod --stats-json
yarn scully
This is an adaptation from scully-plugin-disable-angular
FAQs
I wrote this as an :paperclip: `angular-paperclip` :paperclip: experiment from the talk by **Misko Hevery (@mhevery)** from the [Keynote in NGCONF 2019](https://nitayneeman.com/posts/all-talks-from-ng-conf-2019/#keynote-1)
The npm package @flowaccount/scully-plugin-angular-delay receives a total of 103 weekly downloads. As such, @flowaccount/scully-plugin-angular-delay popularity was classified as not popular.
We found that @flowaccount/scully-plugin-angular-delay demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.