-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 80846a8
Showing
21 changed files
with
4,101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** @type {import("eslint").Linter.Config} */ | ||
module.exports = { | ||
// use overrides to group different types of files | ||
// see https://eslint.org/docs/latest/use/configure/configuration-files#configuration-based-on-glob-patterns | ||
overrides: [ | ||
{ | ||
files: ['src/**/*.ts'], | ||
excludedFiles: ['src/**/*.test.ts'], // exclude test files | ||
extends: ['@rightcapital/typescript'], | ||
env: { node: true }, | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.DS_Store | ||
logs | ||
*.log | ||
npm-debug.log* | ||
.pnpm-debug.log* | ||
node_modules/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx --no -- commitlint --edit "$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pnpm-lock.yaml | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 RightCapital | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Verdaccio Package Diff Plugin | ||
|
||
## How to use | ||
|
||
To view the diffs between two versions of a package, go to: | ||
|
||
```text | ||
{YOUR_VERDACCIO_SITE}/-/npm/package-diff/viewer?name={PACKAGE_NAME}&from={PACKAGE_VERSION_A}&to={PACKAGE_VERSION_B} | ||
``` | ||
|
||
This will display the file differences between the two versions. | ||
|
||
## How to install | ||
|
||
### Build your own docker image | ||
|
||
To install this plugin in your own Verdaccio docker image: | ||
|
||
[Refer to the Verdaccio documentation on creating custom Dockerfile](https://verdaccio.org/docs/docker/#creating-your-own-dockerfile-using-verdaccioverdacciotag-as-base) | ||
|
||
Create a Dockerfile: | ||
|
||
```dockerfile | ||
FROM verdaccio/verdaccio:5 | ||
USER root | ||
RUN npm install --global verdaccio-package-diff | ||
RUN chown -R 10001:65533 "/opt/verdaccio/.npm" | ||
USER $VERDACCIO_USER_UID | ||
``` | ||
|
||
### Config plugin | ||
|
||
Enable the plugin in your `config.yaml`: | ||
|
||
```yaml | ||
middlewares: | ||
package-diff: | ||
enabled: true | ||
``` | ||
### Set plugin permissions | ||
Create a `.npmrc` file for your container, this will allow the plugin to access private packages. | ||
|
||
```yaml | ||
volumes: | ||
- './.npmrc:/opt/verdaccio/.npmrc' | ||
``` | ||
|
||
#### About permissions | ||
|
||
You can use Verdaccio [packages](https://verdaccio.org/docs/configuration/#packages) configuration to control which packages can be access by package diff plugin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = { extends: ['@commitlint/config-conventional'] }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM verdaccio/verdaccio:5 | ||
USER root | ||
RUN npm install --global verdaccio-package-diff | ||
RUN chown -R 10001:65533 "/opt/verdaccio/.npm" | ||
USER $VERDACCIO_USER_UID |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
# | ||
# This is the default configuration file. It allows all users to do anything, | ||
# please read carefully the documentation and best practices to | ||
# improve security. | ||
# | ||
# Look here for more config file examples: | ||
# https://github.com/verdaccio/verdaccio/tree/5.x/conf | ||
# | ||
# Read about the best practices | ||
# https://verdaccio.org/docs/best | ||
|
||
# path to a directory with all packages | ||
storage: /verdaccio/storage | ||
# path to a directory with plugins to include | ||
plugins: /verdaccio/plugins | ||
|
||
# https://verdaccio.org/docs/webui | ||
web: | ||
title: Verdaccio | ||
# comment out to disable gravatar support | ||
# gravatar: false | ||
# by default packages are ordercer ascendant (asc|desc) | ||
# sort_packages: asc | ||
# convert your UI to the dark side | ||
# darkMode: true | ||
# html_cache: true | ||
# by default all features are displayed | ||
# login: true | ||
# showInfo: true | ||
# showSettings: true | ||
# In combination with darkMode you can force specific theme | ||
# showThemeSwitch: true | ||
# showFooter: true | ||
# showSearch: true | ||
# showRaw: true | ||
# showDownloadTarball: true | ||
# HTML tags injected after manifest <scripts/> | ||
# scriptsBodyAfter: | ||
# - '<script type="text/javascript" src="https://my.company.com/customJS.min.js"></script>' | ||
# HTML tags injected before ends </head> | ||
# metaScripts: | ||
# - '<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>' | ||
# - '<script type="text/javascript" src="https://browser.sentry-cdn.com/5.15.5/bundle.min.js"></script>' | ||
# - '<meta name="robots" content="noindex" />' | ||
# HTML tags injected first child at <body/> | ||
# bodyBefore: | ||
# - '<div id="myId">html before webpack scripts</div>' | ||
# Public path for template manifest scripts (only manifest) | ||
# publicPath: http://somedomain.org/ | ||
|
||
# https://verdaccio.org/docs/configuration#authentication | ||
auth: | ||
htpasswd: | ||
file: ./htpasswd | ||
# Maximum amount of users allowed to register, defaults to "+inf". | ||
# You can set this to -1 to disable registration. | ||
# max_users: 1000 | ||
# Hash algorithm, possible options are: "bcrypt", "md5", "sha1", "crypt". | ||
# algorithm: bcrypt # by default is crypt, but is recommended use bcrypt for new installations | ||
# Rounds number for "bcrypt", will be ignored for other algorithms. | ||
# rounds: 10 | ||
|
||
# https://verdaccio.org/docs/configuration#uplinks | ||
# a list of other known repositories we can talk to | ||
uplinks: | ||
npmjs: | ||
url: https://registry.npmjs.org/ | ||
|
||
# Learn how to protect your packages | ||
# https://verdaccio.org/docs/protect-your-dependencies/ | ||
# https://verdaccio.org/docs/configuration#packages | ||
packages: | ||
'@right/*': | ||
# scoped packages | ||
access: $authenticated | ||
publish: $authenticated | ||
unpublish: $authenticated | ||
'**': | ||
access: $all | ||
|
||
#'**': | ||
# allow all users (including non-authenticated users) to read and | ||
# publish all packages | ||
# | ||
# you can specify usernames/groupnames (depending on your auth plugin) | ||
# and three keywords: "$all", "$anonymous", "$authenticated" | ||
# access: $all | ||
|
||
# allow all known users to publish/publish packages | ||
# (anyone can register by default, remember?) | ||
# publish: $authenticated | ||
# unpublish: $authenticated | ||
|
||
# if package is not available locally, proxy requests to 'npmjs' registry | ||
# proxy: npmjs | ||
|
||
# To improve your security configuration and avoid dependency confusion | ||
# consider removing the proxy property for private packages | ||
# https://verdaccio.org/docs/best#remove-proxy-to-increase-security-at-private-packages | ||
|
||
# https://verdaccio.org/docs/configuration#server | ||
# You can specify HTTP/1.1 server keep alive timeout in seconds for incoming connections. | ||
# A value of 0 makes the http server behave similarly to Node.js versions prior to 8.0.0, which did not have a keep-alive timeout. | ||
# WORKAROUND: Through given configuration you can workaround following issue https://github.com/verdaccio/verdaccio/issues/301. Set to 0 in case 60 is not enough. | ||
server: | ||
keepAliveTimeout: 60 | ||
# Allow `req.ip` to resolve properly when Verdaccio is behind a proxy or load-balancer | ||
# See: https://expressjs.com/en/guide/behind-proxies.html | ||
# trustProxy: '127.0.0.1' | ||
|
||
# https://verdaccio.org/docs/configuration#offline-publish | ||
# publish: | ||
# allow_offline: false | ||
|
||
# https://verdaccio.org/docs/configuration#url-prefix | ||
# url_prefix: /verdaccio/ | ||
# VERDACCIO_PUBLIC_URL='https://somedomain.org'; | ||
# url_prefix: '/my_prefix' | ||
# // url -> https://somedomain.org/my_prefix/ | ||
# VERDACCIO_PUBLIC_URL='https://somedomain.org'; | ||
# url_prefix: '/' | ||
# // url -> https://somedomain.org/ | ||
# VERDACCIO_PUBLIC_URL='https://somedomain.org/first_prefix'; | ||
# url_prefix: '/second_prefix' | ||
# // url -> https://somedomain.org/second_prefix/' | ||
|
||
# https://verdaccio.org/docs/configuration#security | ||
# security: | ||
# api: | ||
# legacy: true | ||
# jwt: | ||
# sign: | ||
# expiresIn: 29d | ||
# verify: | ||
# someProp: [value] | ||
# web: | ||
# sign: | ||
# expiresIn: 1h # 1 hour by default | ||
# verify: | ||
# someProp: [value] | ||
|
||
# https://verdaccio.org/docs/configuration#user-rate-limit | ||
# userRateLimit: | ||
# windowMs: 50000 | ||
# max: 1000 | ||
|
||
# https://verdaccio.org/docs/configuration#max-body-size | ||
# max_body_size: 10mb | ||
|
||
# https://verdaccio.org/docs/configuration#listen-port | ||
# listen: | ||
# - localhost:4873 # default value | ||
# - http://localhost:4873 # same thing | ||
# - 0.0.0.0:4873 # listen on all addresses (INADDR_ANY) | ||
# - https://example.org:4873 # if you want to use https | ||
# - "[::1]:4873" # ipv6 | ||
# - unix:/tmp/verdaccio.sock # unix socket | ||
|
||
# The HTTPS configuration is useful if you do not consider use a HTTP Proxy | ||
# https://verdaccio.org/docs/configuration#https | ||
# https: | ||
# key: ./path/verdaccio-key.pem | ||
# cert: ./path/verdaccio-cert.pem | ||
# ca: ./path/verdaccio-csr.pem | ||
|
||
# https://verdaccio.org/docs/configuration#proxy | ||
# http_proxy: http://something.local/ | ||
# https_proxy: https://something.local/ | ||
|
||
# https://verdaccio.org/docs/configuration#notifications | ||
# notify: | ||
# method: POST | ||
# headers: [{ "Content-Type": "application/json" }] | ||
# endpoint: https://usagge.hipchat.com/v2/room/3729485/notification?auth_token=mySecretToken | ||
# content: '{"color":"green","message":"New package published: * {{ name }}*","notify":true,"message_format":"text"}' | ||
|
||
middlewares: | ||
package-diff: | ||
enabled: true | ||
|
||
# https://verdaccio.org/docs/logger | ||
# log settings | ||
log: { type: stdout, format: pretty, level: http } | ||
#experiments: | ||
# # support for npm token command | ||
# token: false | ||
# # disable writing body size to logs, read more on ticket 1912 | ||
# bytesin_off: false | ||
# # enable tarball URL redirect for hosting tarball with a different server, the tarball_url_redirect can be a template string | ||
# tarball_url_redirect: 'https://mycdn.com/verdaccio/${packageName}/${filename}' | ||
# # the tarball_url_redirect can be a function, takes packageName and filename and returns the url, when working with a js configuration file | ||
# tarball_url_redirect(packageName, filename) { | ||
# const signedUrl = // generate a signed url | ||
# return signedUrl; | ||
# } | ||
|
||
# translate your registry, api i18n not available yet | ||
# i18n: | ||
# list of the available translations https://github.com/verdaccio/verdaccio/blob/master/packages/plugins/ui-theme/src/i18n/ABOUT_TRANSLATIONS.md | ||
# web: en-US |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: '3.1' | ||
|
||
services: | ||
verdaccio: | ||
build: . | ||
container_name: 'verdaccio' | ||
networks: | ||
- node-network | ||
environment: | ||
- VERDACCIO_PORT=4873 | ||
- DEBUG=verdaccio* | ||
ports: | ||
- '4873:4873' | ||
volumes: | ||
- './config.yaml:/verdaccio/conf/config.yaml' | ||
#- './.npmrc:/opt/verdaccio/.npmrc' | ||
networks: | ||
node-network: | ||
driver: bridge |
Oops, something went wrong.