
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.
SSPaging is a lightweight server-side (or low-level) pagination library for Vue.js. The name is derived from **Smartscore Pagination, a previous project by its creator. It offers ready-to-use functions and reactive properties to simplify pagination. Built-in components are available for quick integration, while custom implementations can be built using the provided examples.
Install SSPaging via NPM:
npm install ss-paging-vue
Starting from v3.x, SSPaging uses a unified codebase for both the Composition API and Pinia versions. This changes how the state is accessed.
paging.rows.paging.state.rows.After installation, import either the composable or Pinia version of SSPaging, depending on your preferred state management approach:
import { usePaging, usePagingStore } from 'ss-paging-vue'
// Using composables
const paging = usePaging()
// Using Pinia
const paging = usePagingStore()
To use SSPaging without a build tool, include it via CDN:
<script src="https://unpkg.com/ss-paging-vue@latest/dist/ss-paging.dist.js"></script>
// In your JS file
const paging = SSPaging.usePaging()
For full documentation, visit the SSPaging Official Documentation.
Want to contribute? Feel free to submit a pull request for bug fixes or new features. 🚀
FAQs
SSPaging: Server-side pagination library for Vue.js
The npm package ss-paging receives a total of 0 weekly downloads. As such, ss-paging popularity was classified as not popular.
We found that ss-paging demonstrated a healthy version release cadence and project activity because the last version was released less than 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.