Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdxjohnny/nodemon-atom
UNMAINTAINED: Run nodemon from inside atom
https://github.com/pdxjohnny/nodemon-atom
Last synced: about 1 month ago
JSON representation
UNMAINTAINED: Run nodemon from inside atom
- Host: GitHub
- URL: https://github.com/pdxjohnny/nodemon-atom
- Owner: pdxjohnny
- License: mit
- Created: 2015-07-09T15:24:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-03T06:22:22.000Z (over 7 years ago)
- Last Synced: 2024-03-16T06:51:36.646Z (8 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
Nodemon Atom UNMAINTAINED
---# I am no longer working on this as I do not use Atom, I will not be fixing issues.
Nodemon Atom is a package to run nodemon from within atom.
To start nodemon-atom use `Ctrl-Shift-E`.
First select `Set Args` and erase everything in the window that pops up.
Then put in your arguments to nodemon just as you would the command line.If I wanted to run the script in my project root call myscript.js
NODEMON_ARGUMENTS would look like this```bash
myscript.js
```If I wanted to run a script in a subdirectory (heres an express.js example)
```bash
bin/www
```What if I want to run a python file as a module???
Funny you should ask, heres an example of running a tornado web application.
```bash
-e py,js,html --exec "python -m web.app"
```
> -e tells nodemon to reload on changes to files that have those extensions.
> So I also reload on html and js changes because tornado has kept those files
> in memory for me in the past and I've had to reload to get them to display
> the latest changesBut I'm a c++ developer!
Good for you!
```bash
-e h,cpp --exec "make && ./myapp"
```![nodemon-atom](https://f.cloud.nodemonhub.com/assets/69169/2290250/c35d867a-a017-11e3-86be-cd7c5bf3ff9b.gif)