Socket
Socket
Sign inDemoInstall

@anephenix/ui

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@anephenix/ui

A collection of UI components for React web applications


Version published
Weekly downloads
94
increased by1075%
Maintainers
1
Weekly downloads
 
Created
Source

UI

A design system for Next.js applications, using Sass as the CSS preprocessor.

Node.js CI Coverage Status Maintainability Test Coverage

Installation

npm i @anephenix/ui --save

Dependencies

  • Node.js (14+)
  • React (Version 17)
  • Sass (V 5.0+)

Setup

In order to use Anephenix's React UI within your Next.js applications, you will need to adjust your Webpack configuration in order to load the react components.

Make sure that the next.config.js file for your Next.js app has this code:

const applyWebpackConfig = (test = /\.jsx/) => {
	return (config, options) => {
		config.module.rules.push({
			test,
			use: [options.defaultLoaders.babel],
		});
		return config;
	};
};

module.exports = {
	webpack: applyWebpackConfig(),
};

The applyWebpackConfig function ensures that you can load the React components from the node_modules folder.

Usage

To be fleshed out. See the site for details.

tests

npm t

License and credits

©2021 Anephenix OÜ. UI is licenced under the MIT Licence.

Keywords

FAQs

Package last updated on 08 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc