Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@sap-ux/app-config-writer
Advanced tools
The @sap-ux/app-config-writer
adds or updates configurations to a SAP Fiori tools project.
You can define smart links in an application to provide navigation links to other SAP Fiori applications in a standardized way.
To be able to deliver an application with preconfigured targets for the included smart links, you need to import the available targets from a remote configuration of the SAP Fiori launchpad with the provided add smart links config
command.
Then you can configure the smart links with the help of the preview mode for developer variant creation.
https://help.sap.com/docs/SAP_FIORI_tools/17d50220bcd848aa854c9c182d65b699/ceb845a45dd94f4c8bd52f2976f99090.html?q=developer%20variant%20creation&locale=en-US
Npm
npm install --save @sap-ux/app-config-writer
Yarn
yarn add @sap-ux/app-config-writer
Pnpm
pnpm add @sap-ux/app-config-writer
npm init @sap-ux add smartlinks-config
import { generateSmartLinksConfig } from '@sap-ux/app-config-writer';
const myProjectPath = 'path/to/my/project'; // Path to the root of the Fiori app
const target = {
url: 'https://abc.example', // For BAS, use `destination`
client: '100', // Optional client
};
const auth = { username: 'user', password: 'password' }; // Authentication details
const exampleSmartLinksConfig = async () => {
const fs = await generateSmartLinksConfig(myProjectPath, { target, auth });
return new Promise((resolve) => {
fs.commit(resolve);
});
};
// Calling the function
exampleSmartLinksConfig();
See more complex example in /test/unit
SAP Fiori elements
FAQs
Add or update configuration for SAP Fiori tools application
The npm package @sap-ux/app-config-writer receives a total of 120 weekly downloads. As such, @sap-ux/app-config-writer popularity was classified as not popular.
We found that @sap-ux/app-config-writer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.