https://github.com/nexssp/language_nodejs
NodeJS implementation for Nexss PROGRAMMER 2.0
https://github.com/nexssp/language_nodejs
carlo nexss-programmer nodejs tutorials
Last synced: 3 months ago
JSON representation
NodeJS implementation for Nexss PROGRAMMER 2.0
- Host: GitHub
- URL: https://github.com/nexssp/language_nodejs
- Owner: nexssp
- License: mit
- Created: 2019-08-19T06:51:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-10T11:08:02.000Z (3 months ago)
- Last Synced: 2025-03-10T12:23:22.261Z (3 months ago)
- Topics: carlo, nexss-programmer, nodejs, tutorials
- Language: JavaScript
- Homepage:
- Size: 93.8 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node.js for Nexss Programmer 2.x
To Install Nexss Programmer please go to [Nexss Programmer CLI](https://github.com/nexssp/cli#readme) for more information.
You can also find some R&D on wiki pages:## Templates
Each language in the Nexss Programmer has predefined templates which can be used easy by adding file `nexss file add myprogram.js` then the templates is displayed. You can search the template list just by typing after add file command.

## Tutorials
### Learn Any Programming Language Templates
Enter command 'nexss file add myfile.js'
and type learn for finding templates which starts with 'learn' keyword. [Picture above]## JavaScript Runtimes
- Node.js -
- Deno -## To change runtimes/compilers
```sh
nexss js default compiler # displays all available runtimes/compilers
nexss js default compiler deno # to set the Deno compiler
nexss js default compiler node # to set the Node.js compiler
nexss js default compiler unset # to reset to defaults (Node.js)nexss js default compiler --nocache # use --nocache if you have changed configuration files manually
```OR put at the top of your file/program. If will install compiler on 'nexss yourprogram.js'
```js
// nexss-compiler: denoconsole.log(`Hello from Deno! ${Deno.version.deno}`);
```## Interesting links
- Awesome Node.js -
- Deno by Example: