Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@superset-ui/core
Advanced tools
@superset-ui/core
Core modules for Superset:
SupersetClient
requests and authenticationi18n
locales and translationThe SupersetClient
handles all client-side requests to the Superset backend. It can be configured
for use within the Superset application, or used to issue CORS
requests in other applications. At
a high-level it supports:
CSRF
token authentication
SupersetClient.isAuthorized()
GET
and POST
requests (no PUT
or DELETE
)AbortController
API// appSetup.js
import { SupersetClient } from `@superset-ui/core`;
// or import SupersetClient from `@superset-ui/core/lib|esm/SupersetClient`;
SupersetClient.configure(...clientConfig);
SupersetClient.init(); // CSRF auth, can also chain `.configure().init();
// anotherFile.js
import { SupersetClient } from `@superset-ui/core`;
SupersetClient.post(...requestConfig)
.then(({ request, json }) => ...)
.catch((error) => ...);
The following flags can be passed in the client config call
SupersetClient.configure(...clientConfig);
protocol = 'http'
host
headers
credentials = 'same-origin'
(set to include
for non-Superset apps)mode = 'same-origin'
(set to cors
for non-Superset apps)timeout
The following flags can be passed on a per-request call SupersetClient.get/post(...requestConfig);
url
or endpoint
headers
body
timeout
signal
(for aborting, from const { signal } = (new AbortController())
)POST
requests
postPayload
(key values are added to a new FormData()
)stringify
whether to call JSON.stringify
on postPayload
valuesPer-request aborting is implemented through the AbortController
API:
import { SupersetClient } from '@superset-ui/core';
import AbortController from 'abortcontroller-polyfill';
const controller = new AbortController();
const { signal } = controller;
SupersetClient.get({ ..., signal }).then(...).catch(...);
if (IWantToCancelForSomeReason) {
signal.abort(); // Promise is rejected, request `catch` is invoked
}
@data-ui/build-config
is used to manage the build configuration for this package including babel
builds, jest testing, eslint, and prettier.
FAQs
Superset UI core
The npm package @superset-ui/core receives a total of 2,695 weekly downloads. As such, @superset-ui/core popularity was classified as popular.
We found that @superset-ui/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 21 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.