
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
A (very simple) Vuejs plugin shipping the Kuzzle SDK in your components
This plugin simply exposes the Kuzzle SDK in your Vuejs components.
Install the plugin via
npm install vue-kuzzle
Then, in your Vuejs application, you need to register the plugin in your Vue
class.
import VueKuzzle from 'vue-kuzzle';
Vue.use(VueKuzzle, options);
Where options
may contain the following options.
options.backends
An object of available backends to connect to. Backends are POJOs of the following form (the example shows the default config):
options.backends = {
local: {
host: 'localhost',
options: {
port: 7512,
sslConnection: false
}
}
};
The plugin will instantiate the Kuzzle SDK with the Websocket
protocol, choosing among the available backends based on the process.env.VUE_APP_BACKEND
environment variable. If this variable is not specified, the local
backend is choosen as fallback.
Warning Don't forget to connect()
your instance before performing any actions.
You'll be able to access the Kuzzle SDK instance from the components as
this.$kuzzle;
And from anywhere in your app where the Vue
class is available, as
Vue.prototype.$kuzzle;
FAQs
A (very simple) Vuejs plugin shipping the Kuzzle SDK in your components
The npm package vue-kuzzle receives a total of 6 weekly downloads. As such, vue-kuzzle popularity was classified as not popular.
We found that vue-kuzzle 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.