npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ui5-task-nwabap-deployer

v2.1.1

Published

UI5 Tooling Task for deploying UI5 sources to a SAP NetWeaver ABAP system

Downloads

1,147

Readme

npm version

ui5-task-nwabap-deployer

ui5-task-nwabap-deployer is a custom UI5 Tooling task which allows to directly deploy the builded sources to a SAP NetWeaver ABAP application server.

Starting from version 2.0.0 this deployer uses the OData Service /UI5/ABAP_RESPOSITORY_SRV for deploying UI5 sources. Please make sure that the service is activated on your system (for details you can check SAP note 2999557). The new service does some sanity checks like e.g. virus scans. If you have not configured virus scan profiles or want to disable virus scanning please have a look to SAP note 2437892. Current deployer versions starting from version 2.0.0 can be used with SAP systems on which component SAP_UI 753 is installed. On systems with a lower version of component SAP_UI, you have to use version 1.x.x of this deployer.

Install

npm install ui5-task-nwabap-deployer --save-dev

Configuration Options (in $yourapp/ui5.yaml)

  • resources
    • pattern: optional string | array glob pattern to match files for deployment (e.g. **/*.* to match all files); if not set **/*.* is used
  • connection
    • server: string SAP NetWeaver ABAP application server information in form protocol://host:port (alternative: set environment variable UI5_TASK_NWABAP_DEPLOYER__SERVER)
    • client: optional string Client of SAP NetWeaver ABAP application server; if not set default client of server is used (alternative: set environment variable UI5_TASK_NWABAP_DEPLOYER__CLIENT)
    • useStrictSSL: optional true|false SSL mode handling. In case of self signed certificates the useStrictSSL mode option can be set to false to allow a deployment of files; default value: true
    • proxy: optional string Proxy to be used for communication to SAP NetWeaver ABAP application server (e.g. http://myproxyhost:3128).
    • testMode: optional boolean Do deployment in test mode (alternative: set environment variable UI5_TASK_NWABAP_DEPLOYER__TESTMODE).
    • customQueryParams: option key/value query parameter values added to the call to the SAP NetWeaver ABAP application server
  • authentication
    • user: stringUser used for logon to SAP NetWeaver ABAP application server (alternative: set environment variable UI5_TASK_NWABAP_DEPLOYER__USER)
    • password: string Password used for logon to SAP NetWeaver ABAP application server (alternative: set environment variable UI5_TASK_NWABAP_DEPLOYER__PASSWORD)
  • ui5
    • language: optional string Language for deployment (e.g. EN); default value EN
    • package: string Defines the development package in which the BSP container for the UI5 sources is available or should be created.
    • bspContainer: string Defines the name of the BSP container used for the storage of the UI5 sources. Length is restricted to 15 characters (exclusive customer specific namespaces, e.g. /YYY/).
    • bspContainerText: string Defines the description of the BSP container.
    • transportNo: optional (in case package is set to $TMP) string Defines the transport number which logs the changes (alternative: set environment variable UI5_TASK_NWABAP_DEPLOYER__TRANSPORTNO).
    • createTransport: optional true|false Set this option to true in case a new transport should be created each time the application is deployed.
    • transportText: optional string Text for transport to be created.
    • transportUseUserMatch: optional true|false It will be tried to find a transport request of the given user. If no transport is found and createTransport is enabled a new one will be created and used for further file deployments.
    • transportUseLocked: optional true|false If a deployment failed due to the BSP application is locked in another transport, the old (original one) transport will be used to deploy the files.

Usage

  1. Define the dependency in $yourapp/package.json
...
"devDependencies": {
    // ...
    "ui5-task-nwabap-deployer": "*"
    // ...
},
"ui5": {
    "dependencies": [
        // ...
        "ui5-task-nwabap-deployer",
        // ...
    ]
}
...
  1. Configure it in $yourapp/ui5.yaml
builder:
  customTasks:
  - name: ui5-task-nwabap-deployer
    afterTask: generateVersionInfo
    configuration: 
      resources:
        pattern: "**/*.*"
      connection:
        server: http://myserver:8000
        customQueryParams:
          myCustomParameter1: myCustomValue1
          myCustomParameter2: myCustomValue2
      authentication:
        user: myUser
        password: myPassword
      ui5:
        language: EN
        package: ZZ_UI5_REPO
        bspContainer: ZZ_UI5_TRACKED
        bspContainerText: UI5 Upload
        transportNo: DEVK900000    

Further Information

Environment Variables

For development purposes environment variables can be stored in a .env file. They are automatically applied by the dotenv module.

Release History

CHANGELOG.md

License

Apache License 2.0