Can't install my plugin: No valid version available
See original GitHub issueI’ve developed a plugin for etherpad. But when I try to install it I get : “Can’t install my plugin: No valid version available”.
Happens when using npm install
or the web interface
My package.json looks like this
{
"name": "ep_auth_session_samesite_none",
"version": "3.0.0",
"description": "Using samesite none. Provides a route that authenticates the user with the provided sessionID parameter and redirects to the given padName",
"main": "index.js",
"dependencies": {},
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/woeterman94/ep_auth_session.git"
},
"author": "woeterman94",
"license": "MIT",
"bugs": {
"url": "https://github.com/woeterman94/ep_auth_session/issues"
},
"homepage": "https://github.com/woeterman94/ep_auth_session",
"keywords": [
"etherpad",
"authentication",
"session"
]
}
Issue Analytics
- State:
- Created 3 years ago
- Comments:15 (15 by maintainers)
Top Results From Across the Web
npm install fails with: "ENOVERSIONS: No valid versions ...
In your project directory, re-install the latest version of snyk by running npm install snyk --save. If this doesn't work, I'd suggest upgrading ......
Read more >ERROR npm install No valid versions available for https-proxy ...
I checked the directory for https-proxy-agent-snyk-fork using npm ls https-proxy-agent-snyk-fork. and found
Read more >How to fix "The package could not be installed. No valid ...
In your WordPress dashboard, go to Appearance > Themes > Add New. · From there you'll see an option for “Upload” at the...
Read more >npm Error No valid versions available when attempting to ...
I got an error with a plugin called "nodebb-plugin-seo-thread" which I don't remember installing tbh and now I can't run nodebb. I tried...
Read more >Fix "The package could not be installed. No valid plugins were ...
In this video I will help you on fixing the " The package could not be installed. No valid plugins were found." error...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
It works when I delete package-lock.json
Not ideal, but for now it’s workable. Thanks for your help and time.