Gathering detailed insights and metrics for atlas-node
Gathering detailed insights and metrics for atlas-node
Gathering detailed insights and metrics for atlas-node
Gathering detailed insights and metrics for atlas-node
node-atlas
Progressive realtime web framework config-driven or API-driven for building easily serverless files, websites and webapps component-based and service-oriented.
@atlaspack/node-resolver-core
raven-atlas-node
raven atlas node libary
atlas-node-multipass
Encode and decode OpenMRSID Multipass tokens
World's lightest toolkit to quickly and easily add a GUI to your Node programs and bring them online.
npm install atlas-node
Typescript
Module System
Node Version
NPM Version
70.9
Supply Chain
98.5
Quality
75.4
Maintenance
100
Vulnerability
100
License
JavaScript (98.61%)
Shell (1.39%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
5 Stars
64 Commits
1 Forks
1 Watchers
1 Branches
1 Contributors
Updated on Dec 18, 2024
Latest Version
2020.8.28
Package Id
atlas-node@2020.8.28
Unpacked Size
165.52 kB
Size
31.82 kB
File Count
45
NPM Version
3.5.2
Node Version
8.10.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
The Atlas toolkit is available for:
Note for Repl.it users (online demonstrations): after the first demonstration, you may have to click the reload button top left in the frame containing the QR code to display it for the other demonstrations.
1const atlas = require( 'atlastk' ); 2 3const body = ` 4<div style="display: table; margin: 50px auto auto auto;"> 5 <fieldset> 6 <input id="input" maxlength="20" placeholder="Enter a name here" type="text" 7 data-xdh-onevent="Submit" value="World"/> 8 <div style="display: flex; justify-content: space-around; margin: 5px auto auto auto;"> 9 <button data-xdh-onevent="Submit">Submit</button> 10 <button data-xdh-onevent="Clear">Clear</button> 11 </div> 12 </fieldset> 13</div> 14`; 15 16const callbacks = { 17 "": (dom, id) => dom.inner("", body, 18 () => dom.focus("input")), 19 "Submit": (dom, id) => dom.getContent("input", 20 (name) => dom.alert("Hello, " + name + "!", 21 () => dom.focus("input"))), 22 "Clear": (dom, id) => dom.confirm("Are you sure ?", 23 (answer) => { if (answer) dom.setContent("input", ""); dom.focus("input"); }) 24}; 25 26atlas.launch(() => new atlas.DOM(), callbacks);
Thanks to Replit, an online IDE, you can write and run programs using the Atlas toolkit directly in your web browser, without having to install Node.js on your computer.
To see some examples, like the following TodoMVC application or the above Hello, World! program, simply:
run
button,git clone https://github.com/epeios-q37/atlas-node
cd atlas-node
npm install
cd examples
node Hello/main.js
If you want to take your code to the next level, from CLI to GUI, then you found the right toolkit.
With the Atlas toolkit, you transform your programs in modern web applications (SPA), but without the usual hassles:
The Atlas toolkit is written in pure Node.js, with no native code and no dependencies, allowing the Atlas toolkit to be used on all environments where Node.js is available.
And, icing on the cake, simply by running them on a local computer with a simple internet connexion, applications using the Atlas toolkit will be accessible from the entire internet on laptops, smartphones, tablets…
The atlastk
directory contains the JavaScript source code for Node.js of the Atlas toolkit, which is not needed to run the examples.
The node_modules
directory (not provided by the repository, but will be created when launching npm install
) contains the files that are needed in order to use the Atlas toolkit.
The examples
directory contains some examples.
To launch an example (from within the repository):
npm install
(this have only to be do once),cd examples
,node <Name>/main.js
,where <Name>
is the name of the example (15-puzzle
, Blank
, Chatroom
…). For example node Hello/main.js
.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More