Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@hammerstone/refine-vue2
Advanced tools
A powerful, drop in query builder — fully integrated with Laravel. See our Laravel backend at https://hammerstone.dev/refine/laravel/docs/main
Install Refine and its peer dependencies.
yarn add @hamemrstone/refine-vue2 @vue/composition-api vue2-datepicker
Wherever you import Vue (usually app.js), you'll need to add the VueCompositionAPI.
import Vue from 'vue';
// Add the following two lines.
import VueCompositionAPI from '@vue/composition-api';
Vue.use(VueCompositionAPI);
You'll need to include two stylesheets.
There are many ways to include external stylesheets, depending on what your setup is. If you're using PostCSS, you can use the postcss-import
plugin by first requiring npm install -D postcss-import
it.
And then modifying your webpack.mix.js
to reference it.
mix.postCss('resources/css/app.css', 'public/css', [
require('postcss-import'),
]);
If you're using Tailwind, you can include the Tailwind version of the CSS by referencing it explicitly:
@import "@hammerstone/refine-vue2/src/assets/styles/tailwind.css";
If you're not using Tailwind, you can use the vanilla version:
@import "@hammerstone/refine-vue2/dist/refine-vue2.css";
Finally, you'll need to import the datepicker styles:
@import "vue2-datepicker/index.css";
If you prefer to include the stylesheet in your layout instead of importing it through your build process, you may do so via the unpkg CDN.
<link rel="stylesheet" href="https://unpkg.com/@hammerstone/refine-vue2/dist/refine-vue2.css" />
<link rel="stylesheet" href="https://unpkg.com/vue2-datepicker/index.css" />
FAQs
A powerful, drop in query builder — fully integrated with Laravel and Rails. See our Laravel backend at https://hammerstone.dev/refine/laravel/docs/main
The npm package @hammerstone/refine-vue2 receives a total of 0 weekly downloads. As such, @hammerstone/refine-vue2 popularity was classified as not popular.
We found that @hammerstone/refine-vue2 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.