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

@code-coaching/random

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@code-coaching/random - npm Package Compare versions

Comparing version
1.2.0
to
1.2.1
+1
-1
package.json
{
"name": "@code-coaching/random",
"version": "1.2.0",
"version": "1.2.1",
"description": "This package provides functions to generate random stuff (strings, numbers, uuid). It can be used as a dependency for other packages. It can be used as a CLI tool.",

@@ -5,0 +5,0 @@ "type": "module",

@@ -29,3 +29,3 @@ # Code Coaching - Random

```js
import { randomUUID } from "../index.js";
import { randomUUID } from "../dist/index.js";
// This will be: import { randomUUID } from "@code-coaching/random"; inside of a project.

@@ -37,3 +37,3 @@

```js
import { randomID } from "../index.js";
import { randomID } from "../dist/index.js";
// This will be: import { randomID } from "@code-coaching/random"; inside of a project.

@@ -47,3 +47,3 @@

```js
import { randomString } from "../index.js";
import { randomString } from "../dist/index.js";
// This will be: import { randomString } from "@code-coaching/random"; inside of a project.

@@ -50,0 +50,0 @@