You can use ng new project_name --skip-install
or ng init project_name --skip-install
to not download all the additional packages right away. You could then copy the node_modules directory from an existing project template, and finally do an npm install
or yarn install
to make sure everything is happy, depending on your package manager.
Previous versions use ng new project_name --skip-npm
or ng init project_name --skip-npm