Notes on using the sap/cds javascript package from SAP and the cds command
This will create a project with a service and database layers.
Create the folder where you want to initialize, cd
into it then do:
cds init --modules db,srv
cds build/all --clean
warning: The below command drops all the data in the database.
cds deploy --to sqlite:db/my-db-name.db
The repl gives you a javascript console where you can interact with cds.
cds repl
cds serve all