Gathering detailed insights and metrics for knockout-webpack-ts-quickstart
Gathering detailed insights and metrics for knockout-webpack-ts-quickstart
Gathering detailed insights and metrics for knockout-webpack-ts-quickstart
Gathering detailed insights and metrics for knockout-webpack-ts-quickstart
Quickstart project for knockout.js + TypeScript with Webpack2.
npm install knockout-webpack-ts-quickstart
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (48.67%)
TypeScript (25.83%)
Shell (13.3%)
HTML (9.63%)
CSS (2.57%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
4 Stars
12 Commits
1 Forks
2 Watchers
2 Branches
1 Contributors
Updated on May 27, 2025
Latest Version
0.1.0
Package Id
knockout-webpack-ts-quickstart@0.1.0
Size
9.51 kB
NPM Version
5.0.0
Node Version
8.0.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
48
Quickstart project for knockout.js + TypeScript + decorators with Webpack2.
src/app/AppModule.ts
and src/app/components/*Component.ts
.See legacy-ie-fix branch.
package.json
.webpack.config.js
.
1// [Node-single-js-file]: Packing a Node single Javascript file. 2{ 3 entry: { 4 // TODO: YOU SHOULD REPLACE THE LIBRARY OUTPUT NAME! 5 <your-output-name>: path.resolve(__dirname, 'src/index.ts') 6 }, 7 output: { 8 // TODO: YOU SHOULD REPLACE THE LIBRARY NAME! 9 library: '<your-library-name>', 10 ... 11 }, 12 module: { 13 rules: [{ 14 test: /\.tsx?$/, 15 ... 16 17 // TODO: YOU SHOULD REPLACE THE PACKAGE NAME! 18 // exclude 'node_module' directory except myself (refered from other packages) 19 exclude: /node_modules[\/\\](?!knockout-webpack-ts-quickstart).*$/ 20 }, { 21 test: /\.jsx?$/, 22 ... 23 24 // TODO: YOU SHOULD REPLACE THE PACKAGE NAME! 25 // exclude 'node_module' directory except myself (refered from other packages) 26 exclude: /node_modules[\/\\](?!knockout-webpack-ts-quickstart).*$/ 27 }, { 28 ... 29}, 30 31// [Browser-single-js-file]: Packing a library Javascript file. 32{ 33 entry: { 34 // TODO: YOU SHOULD REPLACE THE LIBRARY OUTPUT NAME! 35 <your-output-name>: path.resolve(__dirname, 'src/index.ts') 36 }, 37 output: { 38 // TODO: YOU SHOULD REPLACE THE LIBRARY NAME! 39 library: '<your-library-name>', 40 ... 41 }, 42 module: { 43 rules: [{ 44 test: /\.tsx?$/, 45 ... 46 47 // TODO: YOU SHOULD REPLACE THE PACKAGE NAME! 48 // exclude 'node_module' directory except myself (refered from other packages) 49 exclude: /node_modules[\/\\](?!knockout-webpack-ts-quickstart).*$/ 50 }, { 51 test: /\.jsx?$/, 52 ... 53 54 // TODO: YOU SHOULD REPLACE THE PACKAGE NAME! 55 // exclude 'node_module' directory except myself (refered from other packages) 56 exclude: /node_modules[\/\\](?!knockout-webpack-ts-quickstart).*$/ 57 }, { 58 ... 59},
1npm run build 2npm test
1git clone shellyln/knockout-webpack-ts-quickstart.git
1npm run build 2npm test
dist/style.min.css
and dist/style.min.css.map
to your site.app.html
1<head> 2 <link rel="stylesheet" type="text/css" href="path/to/style.min.css"> 3</head>
npm start
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/12 approved changesets -- 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
branch protection not enabled on development/release branches
Details
Reason
134 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