Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
kamikaze-three
Advanced tools
A framework for building front-end libraries using TS and SCSS
npm login
npm publish
- to publish / update a packagenpm unpublish [package_name]
- to deleteThe framework allows you to write code in the form of Typescript and SCSS, code that will be compiled in JavaScript and CSS.
The output will be placed inside dist
folder and it's represented by two files.
my-library.js
- you JS and CSS code bundled in one filemy-library.d.ts
- types for your codeThe SCSS files need to be imported in the main TypeScript file.
Default, Webpack is configured to include the CSS code inside the JavaScript file which will create the <style></style>
tag and populate it with the corresponding style.
If you want to place the CSS output in a separate file and have them both included in your application then cut these lines from config
object
{
test: /\.s?css$/,
use: [
'style-loader',
{
loader: 'postcss-loader',
options: {
config: {
path: 'postcss.config.js',
},
},
},
'sass-loader',
],
},
and place them here
module.exports = (env, argv) => {
if (argv.mode === 'development') {
// * add some development rules here
} else if (argv.mode === 'production') {
// * add some prod rules here
} else {
throw new Error('Specify env');
}
return config;
};
Full example:
module.exports = (env, argv) => {
if (argv.mode === 'development') {
// * scss
config.module.rules.push({
test: /\.s?css$/,
use: [
'style-loader',
{
loader: 'postcss-loader',
options: {
sourceMap: true,
config: {
path: 'postcss.config.js',
},
},
},
'sass-loader',
],
});
} else if (argv.mode === 'production') {
config.module.rules.push({
test: /\.s?css$/,
use: [
'style-loader',
{
loader: 'postcss-loader',
options: {
config: {
path: 'postcss.config.js',
},
},
},
'sass-loader',
],
});
} else {
throw new Error('Specify env');
}
return config;
};
my-library.ts
to the desired filename.package.json
in main
and types
properties.webpack.config.js
in entry
and output
properties.test
folder.<script></script>
tag in index.html
file from demo
folder.index.html
with a Live Server or as a simple file and test the library.If your library it's made to be used by the browser, then set the target
to web
. If it's made to be used in the NodeJS environment, then set it to node
.
In order for the library to be used both as a module and as a global object available in window
, then use this properties:
libraryTarget: 'umd',
globalObject: 'this',
umdNamedDefine: true,
webpack.config.js
target: 'web',
entry: {
index: './src/my-library.ts',
},
output: {
path: path.resolve(__dirname, './dist'),
filename: 'my-library.js',
library: 'MyLibrary',
libraryTarget: 'umd',
globalObject: 'this',
umdNamedDefine: true,
},
The exports are available under the name set in library
property.
index.html
<script src="./dist/my-library.js"></script>
<script>
const { isPrimeNumber } = window.MyLibrary;
</script>
.js or .ts file
import { isPrimeNumber } from '../src/my-library';
If you want to export by default, you can add the following property, libraryExport: 'default'
, in webpack.config.js
under config.output
.
Then, in your main library file use export default
, for example export default class MyClass{}
.
In package.json
add a new property named files
, with the location to your distribution code.
"files": [
"dist"
],
Build before publish - you can add this property inside package.json
in scripts
object, if you need a hook before you publish your package. This command will be executed when you run npm publish
, but before publishing the code.
"prepublishOnly": "webpack --mode=production",
Versioning - each time you run npm publish
, be sure to update the version in "version": "1.0.0"
property inside package.json
. Otherwise you won't be able to deploy a new version.
Ignoring files - use .npmgignore
in the same way as .gitignore
, but for npm
For more indeepth testing, Jest
and Cypress
are configured and they both contain a dummy example.
npm run test
npm run test:watch
npm run test:cov
index.html
file from demo
folder.cypress/integration/test.spec.js
update the URL
if required.npx cypress open
Each npm package is available on UNPKG. This fits very well if your library is made for the web.
FAQs
A framework for building front-end libraries using TS and SCSS
The npm package kamikaze-three receives a total of 0 weekly downloads. As such, kamikaze-three popularity was classified as not popular.
We found that kamikaze-three demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.