Gathering detailed insights and metrics for @artahian/node-app
Gathering detailed insights and metrics for @artahian/node-app
Gathering detailed insights and metrics for @artahian/node-app
Gathering detailed insights and metrics for @artahian/node-app
npm install @artahian/node-app
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
27 Commits
1 Watchers
9 Branches
1 Contributors
Updated on Jul 09, 2019
Latest Version
1.0.18
Package Id
@artahian/node-app@1.0.18
Unpacked Size
8.62 kB
Size
3.16 kB
File Count
5
NPM Version
6.4.1
Node Version
8.15.1
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
4
4
A build tool that sets up Webpack, Babel, React and Express in your Node project so that you can start creating a full-stack JavaScript/React/Node/Express app without any setup
1npm install --save @artahian/node-app
After installing the package, run
1node-app setup
node-app will automatically install the necessary build tools as dev dependencies in your project.
Add build, start and start:dev scripts to your package.json:
1 "scripts": { 2 "build": "node-app build", 3 "start": "node-app start", 4 "start:dev": "node-app start:dev", 5 ... 6 }
Structure your project in the following way:
node-app exports a renderHome
express handler that serves your index.html with the bundled index.js with all of its dependencies,
which will usually contain your main React app.
In your src/server/app.js
, import the express app from node-app and start the server. For example:
1import express from 'express'; // Note that you don't have to install 'express' yourself, it comes with this package 2 3import { app, renderHome } from '@artahian/node-app'; 4 5app.use(express.json()); 6app.use(express.urlencoded({ extended: true })); 7 8app.get('/', renderHome); 9 10const port = process.env.PORT || 3000; 11 12app.listen(port, () => { 13 console.log(`Application started on port ${port}`); 14}); 15
Start your application by running:
1npm start:dev
For production, use:
1npm run build 2npm start
node-app will generate a dist
directory with the bundled versions.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 0/27 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
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
110 existing vulnerabilities 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