
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@bassist/progress
Advanced tools
Simple slim progress bars base on NProgress.
With npm(or yarn, or pnpm):
npm install @bassist/progress
In .js
/ .ts
or other files:
import progress from '@bassist/progress'
// Used in the framework's router hooks.
// Or in other scenarios (e.g. AJAX requests).
router.beforeEach(() => {
progress.start()
})
router.afterEach(() => {
progress.done()
})
All configurations and options of NProgress are supported.
This plugin extends NProgress's API and adds a setColor
method.
export interface Progress extends NProgress {
/**
*
* @param color - A valid CSS color value or CSS variable
*
* @example use HEX
* progress.setColor('#ff0000')
*
* @example use RGB
* progress.setColor('rgb(255, 0, 0)')
*
* @example use RGBA
* progress.setColor('rgba(255, 0, 0, 1)')
*
* @example use CSS Variable
* progress.setColor('var(--color-primary)')
*/
setColor: (color: string) => void
}
import progress from '@bassist/progress'
// Set the color before start
progress.setColor('#ff0000')
// Then, used in the framework's router hooks.
// Or in other scenarios (e.g. AJAX requests).
router.beforeEach(() => {
progress.start()
})
router.afterEach(() => {
progress.done()
})
Please refer to CHANGELOG for details.
MIT License © 2022-PRESENT chengpeiquan
FAQs
Simple slim progress bars base on NProgress.
We found that @bassist/progress 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.