npm ERROR! 404 Content removed by unidentified source on August 8, 2022 at 09:20:35.527 UTC

Upon running the command <npm view e-biz-znnf versions --json> in the terminal, npm throws an error message:

npm ERR! code E404
npm ERR! 404 Unpublished by undefined on 2022-08-08T09:20:35.527Z
npm ERR! 404 
npm ERR! 404  'e-biz-znnf' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
{
  "error": {
    "code": "E404",
    "summary": "Unpublished by undefined on 2022-08-08T09:20:35.527Z",
    "detail": "\n 'e-biz-znnf' is not in the npm registry.\nYou should bug the author to publish it (or use the name yourself!)\n\nNote that you can also install from a\ntarball, folder, http url, or git url."
  }
}

This error indicates that a specific version of the package was not published.

Upon checking the list of package versions in Verdaccio, the timestamp for the node of the package's JSON information shows an unpublished entry (1.1.26-alpha.0) despite being previously published.

However, the timestamps for the published and unpublished versions differ.

The package resides on a private Verdaccio server.

Deleting the unpublished node from the package.json file on the Verdaccio server resolves the issue without reporting an error.

Why do these unpublished versions exist? How did this occur?

{
    "versions": {
        "2.0.0": {
            "version": "2.0.0",
            "description": "deleted extra fields"
        },
        "1.1.26-alpha.0": {
            "version": "1.1.26-alpha.0",
            "types": "./types/index.d.ts",
            "scripts": {},
            "name": "e-biz-znnf",
            "main": "index.js",
            "license": "ISC",
            "dist": {
                "tarball": "http://***/e-biz-znnf/-/e-biz-znnf-1.1.26-alpha.0.tgz",
                "shasum": "***",
                "integrity": "sha512-***"
            },
            "description": "tools packages",
            "contributors": [],
            "author": "",
            "_npmVersion": "6.14.17",
            "_nodeVersion": "14.20.0",
            "_id": "<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="72175f101b085f081c1c1432435c435c40445f131e021a135c42">[email protected]</a>"
        },
        "1.1.25": {
            "version": "1.1.25",
            "description": "deleted extra fields"
        }
    },
    "users": {},
    "time": {
        "unpublished": {
            "versions": [
                "1.1.26-alpha.0"
            ],
            "time": "2022-08-08T09:20:35.527Z"
        },
        "modified": "2023-01-30T03:17:32.951Z",
        "created": "2022-08-08T09:18:19.876Z",
        "2.0.0": "2023-01-30T03:17:32.951Z",
        "1.1.26-alpha.0": "2022-08-08T09:18:20.123Z",
        "1.1.25": "2022-07-26T07:25:00.977Z"
    },
    "readme": "ERROR: No README data found!",
    "name": "e-biz-znnf",
    "dist-tags": {
        "latest": "2.0.0"
    },
    "_rev": "295-f8da7bf7f8a7099a",
    "_id": "e-biz-znnf",
    "_attachments": {}
}

Answer №1

In my opinion, the solution lies in executing the following command:

npm view versions --json

This should provide you with the desired output

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

During the Jasmine test, an error was encountered when trying to call a factory function that includes both a local and another function. The error message displayed

I have a factory with two functions and two local methods. I have written a Jasmine test case in which I expect the local method updateDetails and the factory function SavePref.savePref to be called when SavePref.saveDetails(values, prop); is invoked, as s ...

When the update button is clicked, the textfield is hidden; it reappears upon refreshing the page

Our marketplace multi-vendor site on Magento allows sellers to list their products for sale. The frontend displays the price using the following code: Phtml <input onFocus="showPriceCancel('<?php echo $products->getId(); ?>');" clas ...

Remove an item from Firebase using React with ES6 syntax

[HELP NEEDED]Seeking solution below Encountering an issue with deleting an object from the Firebase database. I have experience with this, but for some reason it's not functioning as expected: Action: export const firebase_db = firebase.database(). ...

Is there a more efficient method for iterating through this object?

Working with JSON and JS var data = { "countries": { "europe" : [{name: "England", abbr: "en"}, {name: "Spain", abbr: "es"}], "americas" : [{name: "United States"}], "asia" : [{name: "China"}] } }; JavaScript Loop for (k in data) { fo ...

The select2 does not show the selected information

My select2 is not selecting the value when in edit mode. You can view my data here. Upon clicking the edit data button, it should select "settings" as the parent's value, but unfortunately, it's not working. You can see the issue here. Modal Sc ...

Guide on importing an external JavaScript library in Node.js utilizing a TypeScript declaration file

I am working on a Node.js project using Typescript and I am facing an issue with integrating mime.js (https://github.com/broofa/node-mime). Even though I have a declaration file available (https://github.com/borisyankov/DefinitelyTyped/blob/master/mime/mim ...

When the canvas is in full screen mode, my div elements are hidden

Currently, I am immersed in a 360-panorama project, utilizing panolens.js and three.js. While Panolens offers fullscreen mode functionality, the problem arises when entering this mode as the canvas conceals all of my div elements. One particular div elemen ...

The openapi-generator with the typescript-angular language option appears to be experiencing some issues

I am facing issues with generating angular code using the openapi-generator for language typescript-angular. Do you have any suggestions on how to resolve this? I have already tried running openapi-generator help meta and it seems that -l is a valid option ...

When utilizing a clone in a Draggable and Droppable scenario, the data/attribute is obtained from the

Currently, I am struggling with retrieving data/attributes from the original item when using jQueryUI draggable/droppable to move rows between tables. I have set helper: 'clone' but am finding it difficult to access any data from the dragged item ...

Is there a way to completely define CSS animation using only JavaScript?

I am looking to implement CSS animation on HTML elements that are generated entirely through a JavaScript function. The approach I am taking involves customizing settings and functions for each part of the animation, which is why this method is necessary. ...

What are the possible arguments for the event type onInput?

While diving into the world of html / javascript / vue, I stumbled upon the following code snippet. <input type="text" onInput="doAction(event);"> <script> var mesdata = { message: 'type your m ...

Issue with NPM's manual review process following recent package updates

Upon downloading node-sass, I encountered the following warning message: "found 9 vulnerabilities (4 moderate, 5 high) in 1869 scanned packages. 9 vulnerabilities require manual review. See the full report for details." Despite attempting to manually insta ...

Issue with React.useEffect not functioning in Express application

I'm having trouble with the state not updating or re-rendering in my code. I've tried logging from inside the useEffect function but nothing seems to happen. Any suggestions on how to make the useEffect work properly? app.js var createError = re ...

Exploring JSON without taking into account letter case

Looking to conduct a case-insensitive search in a JSON file? Here's the JSON data you can work with: { "Data" : [ {"Name": "Widget", "Price": "25.00", "Quantity": "5" }, {"Name": "Thing", "Price": "15.00", "Quantity": "5" }, {"Nam ...

Access user connections through Discord.js bot

Hi there, I'm currently working on creating a bot that can retrieve a user's connected battle.net account and display their game rank. I am utilizing the discord.js library and have been attempting to access the UserProfile through the bot. Unfor ...

Iframe not displaying Base64 encoded PDF in Chrome App

Currently, I am in the process of developing a Chrome App that essentially acts as a wrapper for the main app within a webview. The webview sends a Base64 encoded PDF as a message to the app, which then creates a hidden iframe and loads the PDF into the fr ...

Using an AJAX request to edit a record directly without the need for a

When updating a record, I typically utilize CRUD operations and a store setup similar to the following: storeId: 'storeId', model: 'model', pageSize: 10, autoLoad: true, proxy: { typ ...

What are the benefits of using `observer` over `inject` when passing data to a React component in MobX?

After reading MobX documentation, it appears that using observer on all components is recommended. However, I have discovered that by utilizing the inject method, I am able to achieve more precise control over which data triggers a re-render of my componen ...

Setting the default dropdown option in Angular

For my latest question, I decided to utilize ng-init. However, upon loading the page, I noticed that there is a blank default option. When I click and select another option, the blank option disappears. How can I remove this initial blank option? Here is ...

What is the best way to reset the scroll position of a div when you stop hovering over a link?

Can anyone help me figure out how to reset the scroll wheel when hovering over dropdown menu items? I've tried multiple solutions found online, but none seem to be working for me. If you have any ideas on how to accomplish this, please let me know! f ...