Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@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 chengpeiquan
FAQs
Simple slim progress bars base on NProgress.
The npm package @bassist/progress receives a total of 1 weekly downloads. As such, @bassist/progress popularity was classified as not popular.
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.