![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@dynamicweb/cli
Advanced tools
Dynamicweb CLI is a commandline tool for interacting with Dynamicweb 10 solutions.
DynamicWeb CLI is a powerful command line tool designed to help developers quickly and efficiently manage any given DynamicWeb 10 solution they may have access to. These tools inclues an easy setup and handling of different environments, access to the Management API and an easy way to update a Swift solution.
Logging into a DynamicWeb 10 solution through the DynamicWeb CLI will create an API Key for the given user, which in turn lets you use any Queries and Commands the solution had, meaning you can control everything you can do in the backend, from your command line. With this, you can hook it up to your own build pipelines and processes, if certain requests needs to happen before or after deployments or changes.
The DynamicWeb CLI can also help with active development of custom addins to solutions. With a simple dw install
command it will upload and install your custom code to a solution.
Extracting files from solutions is just as easy as well, with the DynamicWeb CLI you can list out the structure of a solution and get full exports of the files structure and the database. Importing files into a solution is just as easy as well, as long as you have access to the files and the solution, they can be imported with a simple command using the DynamicWeb CLI.
To install after cloning, move to project dir and run
$ npm install -g .
$ npm install
Note that specific installations might be necessary if you're faced with errors such as 'Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'yargs'' In which case try installing that module specifically;
$ npm install yargs
All commands and options can be viewed by running
$ dw --help
$ dw <command> --help
As most commands are pulling or pushing data from the DW admin API, the necessary authorization is required.
To generate an Api-key that the CLI will use, login to your environment
$ dw login
This will start an interactive session asking for username and password, as well as the name of the environment, so it's possible to switch between different environments easily.
It will also ask for a host, if you're running a local environment, set this to the host it starts up with, i.e localhost:6001
.
Each environment has its own users, and each user has its own Api-key assigned to it, swap between environments by using
$ dw env <env>
and swap between users by simply supplying the name of the user in the login command
$ dw login <username>
You can view the current environment and user being used by simply typing
$ dw
The configuration will automatically be created when setting up your first environment, but if you already have an Api-key you want to use for a user, you can modify the config directly in the file located in usr/.dwc
. The structure should look like the following
{
"env": {
"dev": {
"host": "localhost:6001",
"users": {
"DemoUser": {
"apiKey": "<keyPrefix>.<key>"
}
},
"current": {
"user": "DemoUser"
}
}
},
"current": {
"env": "dev"
}
}
$ dw files <dirPath> <outPath>
The files command is used to list out and export the structure in your Dynamicweb files archive, as such is has multiple options;
-l
--list
This will list the directory given in <dirPath>-f
--includeFiles
The list will now also show all files in the directories-r
--recursive
By default it only handles the <dirPath>, but with this option it will handle all directories under this recursively-e
--export
It will export <dirPath> into <outPath> on your local machine, unzipped by default--raw
This will keep the content zipped--iamstupid
This will include the export of the /files/system/log and /files/.cache foldersExporting all templates from current environment to local solution
$ cd DynamicWebSolution/Files
$ dw files templates ./templates -fre
Listing the system files structure of the current environment
$ dw files system -lr
$ dw swift <outPath>
The swift command is used to easily get your local environment up to date with the latest swift release. It will override all existing directories and content in those, which can then be adjusted in your source control afterwards. It has multiple options to specify which tag or branch to pull;
-t
--tag <tag>
The tag/branch/release to pull-l
--list
Will list all the release versions-n
--nightly
Will pull #HEAD, as default is latest release--force
Used if <outPath> is not an empty folder, to override all the contentGetting all the available releases
$ dw swift -l
Pulling and overriding local solution with latest nightly build
$ cd DynamicWebSolution/Swift
$ dw swift . -n --force
$ dw query <query>
The query command will fire any query towards the admin Api with the given query parameters. This means any query parameter that's necessary for the given query, is required as an option in this command. It's also possible to list which parameters is necessary for the given query through the options;
-l
--list
Will list all the properties for the given <query>-i
--interactive
Will perform the <query> but without any parameters, as they will be asked for one by one in interactive mode--<queryParam>
Any parameter the query needs will be sent by '--key value'Getting all properties for a query
$ dw query FileByName -l
Getting file information on a specific file by name
$ dw query FileByName --name DefaultMail.html --directorypath /Templates/Forms/Mail
$ dw command <command>
Using command will, like query, fire any given command in the solution. It works like query, given the query parameters necessary, however if a DataModel
is required for the command, it is given in a json-format, either through a path to a .json file or a literal json-string in the command.
-l
--list
Lists all the properties for the command, as well as the json model required currently not working--json
Takes a path to a .json file or a literal json, i.e --json '{ abc: "123" }'Creating a copy of a page using a json-string
$ dw command PageCopy --json '{ "model": { "SourcePageId": 1189, "DestinationParentPageId": 1129 } }'
Removing a page using a json file
$ dw command PageMove --json ./PageMove.json
Where PageMove.json contains
{ "model": { "SourcePageId": 1383, "DestinationParentPageId": 1376 } }
Deleting a page
$ dw command PageDelete --json '{ "id": "1383" }'
$ dw install <filePath>
Install is somewhat of a shorthand for a few commands. It will upload and install a given .dll or .nupkg addin to your current environment.
It's meant to be used to easily apply custom dlls to a given project, it being local or otherwise, so after having a dotnet library built locally, this command can be run, pointing to the built .dll and it will handle the rest with all the addin installation, and it will be available in the DynamicWeb solution as soon as the command finishes.
$ dw install ./bin/Release/net6.0/CustomProject.dll
$ dw database <outPath>
This command is used for various actions towards your current environments database.
-e
--export
Exports your current environments database to a .bacpac file at <outPath>$ dw database -e ./backup
$ dw config
Config is used to manage the .dwc file through the CLI, given any prop it will create the key/value with the path to it.
--<property>
The path and name of the property to setChanging the host for the dev environment
$ dw config --env.dev.host localhost:6001
FAQs
Dynamicweb CLI is a commandline tool for interacting with Dynamicweb 10 solutions.
The npm package @dynamicweb/cli receives a total of 17 weekly downloads. As such, @dynamicweb/cli popularity was classified as not popular.
We found that @dynamicweb/cli 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.