New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

node-stringbuilder

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-stringbuilder - npm Package Compare versions

Comparing version
2.2.4
to
2.2.5
+28
.github/workflows/ci.yml
name: CI
on: [push, pull_request]
jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node-version:
- 12.x
- 14.x
- 15.x
- 16.x
name: Use ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
+12
-12
{
"name": "node-stringbuilder",
"version": "2.2.4",
"version": "2.2.5",
"description": "An easy and fast in-memory string builder for Node.js.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"benchmark": "mocha --reporter spec benchmark"
"test": "mocha",
"benchmark": "mocha benchmark"
},
"engines": {
"node": ">=8.6.0"
},
"repository": {

@@ -28,14 +31,11 @@ "type": "git",

},
"homepage": "https://github.com/magiclen/node-stringbuilder#readme",
"engines": {
"node": ">=8.6.0"
"homepage": "https://magiclen.org/node-stringbuilder/",
"dependencies": {
"bindings": "^1.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"mocha-logger": "^1.0.6"
},
"dependencies": {
"bindings": "^1.3.0"
"chai": "^4.3.4",
"mocha": "^8.4.0",
"mocha-logger": "^1.0.7"
}
}
StringBuilder for Node.js
=========
[![CI](https://github.com/magiclen/node-stringbuilder/actions/workflows/ci.yml/badge.svg)](https://github.com/magiclen/node-stringbuilder/actions/workflows/ci.yml)
An easy and fast in-memory string builder for Node.js.

@@ -36,17 +38,2 @@

## Installation
Run `npm i` or `npm install` to install.
```bash
npm install node-stringbuilder
```
If you want to save this module to package.json, please add `--save` option.
```bash
npm install node-stringbuilder --save
```
## Features

@@ -53,0 +40,0 @@