Tools used to test reSolve applications.
resolve like require.resolve() on behalf of files asynchronously and synchronously
Offers a async require.resolve function. It's highly configurable.
Resolve the path of a package regardless of it having an entry point
Component Story Format (CSF) utilities
Resolve a URI relative to an optional base URI
Resolve things like Node.js — ponyfill for `import.meta.resolve`
**A professional-grade dependency injection container for TypeScript applications built with SOLID principles.**
Resolve the path of a module like `require.resolve()` but from a given path
TypeScript definitions for resolve
micromark utility to resolve subtokens
React Native module for getting launch arguments
An API for interacting with the Rush engine
Resolve package.json exports & imports maps
Broker CLI for @pact-foundation/pact
An utility library for performing platform-dependent actions on browsers.
Resolve a directory that is either local, global or in the user's home directory.
A set of tools for emulating browser behavior in jsdom environment
Locate and bundle third-party dependencies in node_modules
A fork of `import-meta-resolve` with commonjs + ESM support at the same time, AKA dual package.
Resolve the path of a module like `require.resolve()` but from the current working directory
Resolve nested CSS selectors
Missing ECMAScript module utils for Node.js
Babel plugin for resolving Vue types.
Gx is 3 git related tools: gx-update, gx-publish, and gx-pull-check gx-update is a replacement for 'git pull' that includes an integrated conflict resolver. gx-pull-check integrates with github to provide the ability to test a pull requests against your tests.
# Netchk Simple tool to troubleshoot internet connectivity issues. This tool verifies: - your computer has at least one IP address - you have at least one DNS configured - you can reach the configured nameservers - the nameservers can resolve hosts Finally, some ICMP ping statistics are presented with average durations and error rates. ## Installation ```sh gem install netchk ``` ## Usage Just run `netchk` from your terminal and basic diagnosis will start showing you progress and any error if present. Note: On Linux system, this gem requires `sudo` to perform the ICMP ping operations. On macOS, this is not needed. You also can configure how netchk verifies your connections by configuring a `~/.netchk.yaml` or `~/.netchk.yml` file like below. ```yaml # Settings to test DNS server connectivity. dns: # Path to resolv.conf file to check presence and connectivity of DNS. # Path should be absolute to avoid issues when running netchk # from different directories. resolv.conf: /etc/resolv.conf # Settings to test DNS resolution. resolv: # Path to resolv.conf file to use for testing DNS resolution. # Path should be absolute to avoid issues when running netchk # from different directories. It is advised to be the same # as dns.resolv.conf. resolv.conf: /etc/resolv.conf # The list of domains to test for DNS resolution. domains: - google.com - youtube.com - facebook.com # Settings to test icmp ping. icmp: # A list of hosts to ping with ICMP. It is advised to use # IP addresses instead of domains to rule out any issues with # DNS resolution, which is tested separately. hosts: - 1.1.1.1 - 8.8.8.8 # The number of ping to issue each host. count: 20 # The duration in seconds to wait between each ping. # Setting this value too low might cause timeouts. interval: 0.2 ``` Each value is optional. If one is missing the default value will be used. The file above shows the default values. ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/moray95/netchk.