https://github.com/daemonraco/module-ts-startup
NodeJS module start-up using TypeScript.
https://github.com/daemonraco/module-ts-startup
Last synced: 6 months ago
JSON representation
NodeJS module start-up using TypeScript.
- Host: GitHub
- URL: https://github.com/daemonraco/module-ts-startup
- Owner: daemonraco
- License: mit
- Created: 2017-07-17T20:08:12.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-18T12:32:15.000Z (about 9 years ago)
- Last Synced: 2025-07-27T00:31:03.692Z (about 1 year ago)
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NodeJS Module Start-up
This is a simple empty NodeJS module that can be used as template.
It's already configured to work with TypeScript.
## How to use it
There's no magic to it so using `npm install`, `npm link` and those thing is
totally possible.
Once your code is ready you can run this command to build/_transpile_ your code:
>npm run build
And if you want to to keep coding while it automatically builds your code, you
can this command:
>npm run build:live
Or just:
>npm start
## Cleaning
If you've been creating and deleting code files and you think your `lib`
directory may have some garbage, just run this command and it will clean that
directory and rebuild:
>npm run clean-up
## Tips
Here you have a few docs that can help you start and solve some issues:
* [Unknown Types](docs/unknown-types.md)
* [Using `npm link`](docs/npm-link.md)
* [Exporting Classes](docs/export-classes.md)
## Licence
MIT © [Alejandro Dario Simi](http://daemonraco.com)