Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
@subscan/widget-vite-plugin-fs
Advanced tools
The vite plutin for sunmao to read and write the applications and modules schema files.
The vite plutin for sunmao to read and write the applications and modules schema files.
You should enable the plugin in the vite.config.js
first.
import * as path from 'path';
import { defineConfig } from 'vite';
import sunmaoFsVitePlugin from '@subscan/widget-vite-plugin-fs';
import routes from './src/routes';
export default defineConfig({
plugins: [
sunmaoFsVitePlugin({
schemas: routes
.filter(route => 'name' in route)
.map(route => ({
name: route.name,
path: path.resolve(__dirname, `./src/applications/${route.name}.json`),
})),
modulesDir: path.resolve(__dirname, './src/modules'),
}),
],
});
Read the schemas of the applications and the modules:
const PREFIX = '/sunmao-fs';
export async function fetchApp(name: string): Promise<Application> {
const application = await (await fetch(`${PREFIX}/${name}`)).json();
if (application.kind === 'Application') {
return application;
}
throw new Error('failed to load schema');
}
export async function fetchModules(): Promise<Module[]> {
const response = await (await fetch(`${PREFIX}/modules`)).json();
if (Array.isArray(response)) {
return response;
}
throw new Error('failed to load schema');
}
const [app, modules] = await Promise.all([fetchApp(name), fetchModules()]);
Modify the schemas:
export function saveApp(name: string, app: Application) {
return fetch(`${PREFIX}/${name}`, {
method: 'put',
headers: {
'content-type': 'application/json',
},
body: JSON.stringify({
value: app,
}),
});
}
export function saveModules(modules: Module[]) {
return fetch(`${PREFIX}/modules`, {
method: 'put',
headers: {
'content-type': 'application/json',
},
body: JSON.stringify({
value: modules,
}),
});
}
initWidgetUIEditor({
defaultApplication: app,
defaultModules: modules,
runtimeProps: config,
storageHandler: {
onSaveApp: function (app) {
return saveApp(name, app);
},
onSaveModules: function (modules) {
return saveModules(modules);
},
},
});
FAQs
The vite plutin for sunmao to read and write the applications and modules schema files.
We found that @subscan/widget-vite-plugin-fs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.