![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@nanogiants/generator-nano-nodegen
Advanced tools
A simple generator for scaffolding node.js apps
This package contains a yeoman generator for scaffolding node apps with typescript support.
npm i -g yo
npm i -g @nanogiants/generator-nano-nodegen
yo @nanogiants/nano-nodegen
These commands will prompt you with some questions from which your project gets bootstrapped.
├── .eslintrc.js # eslint config
├── .gitignore # files ignored by git
├── .prettierrc.js # prettier config
├── LICENSE.md
├── CHANGELOG.md
├── README.md
├── docker-compose.yml # compose file for sonarqube and postgress containers
├── jest.config.js # config for your jest testing library
├── nodemon.json # config for your filewatcher
├── package-lock.json
├── package.json # your projects package setup
├── scripts
│ └── report_sonarqube.sh # helper script to report to sonarqube
├── sonar-project.properties # sonarqube configuration file
├── src
│ ├── index.ts # your apps entry point
│ └── lib # your apps logic
│ ├── hello.spec.ts # a sample test file
│ └── hello.ts # a sample ts file
└── tsconfig.json # the typescript configuration file
Enables linting with predefined config. See more at eslint.
If eslint gets selected you will also be asked if you want to install commit hooks with husky and lint your files while staging with lint-staged.
Enables codeformatting with prettier.
Enables testing your code with jest. To test your files run
npm run test
or
npm run test:cov # also creates coverage file to report to sonarqube
If jest gets selected you will also be asked if you want to configure sonarqube. If yes
your project will setup a docker-compose.yml
file and a few scripts to get started.
To start sonarqube run
npm run sonarqube:start
To stop sonarqube run
npm run sonarqube:stop
To report your testcoverage just run
npm run sonarqube:report YOUR_KEY
or
sh ./scripts/report_sonarqube.sh -k YOUR_KEY
If Changelog gets selected you can create a changelog with angular commit guidelines when you update your npm version. Initially you need to call
npm run init-changelog
once, to create the initial changelog file.
It then gets updated everytime you update your version.
To contribute please fork the repository, create a new branch to make changes on and create a pull request into the develop branch of this repository.
Remember to write tests (if needed) to get the features approved.
For feature requests please use the issuetracker and specify your exact needs.
FAQs
A simple generator for scaffolding node.js apps
The npm package @nanogiants/generator-nano-nodegen receives a total of 1 weekly downloads. As such, @nanogiants/generator-nano-nodegen popularity was classified as not popular.
We found that @nanogiants/generator-nano-nodegen demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.