Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.