
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
A Design System / Component Library Template for enabling graphic consistency and legibility across web development projects by creating reusable components and styles with accessible & legible documentation. Built on top of Vue.js and Vuetify.js.
This Template is comprised of two major categories: Styles
and Components. It builds to compiled components
(.js
) and compiled styles (.css
) from the source (.vue
) files
which can be used across web applications. It also creates a
Storybook site for component/design system
documentation.
Clone this repository locally, and use it as a starting point for building a component library / design system on top of Vue.js and Vuetify.js
After cloning/downloading the repository locally, install the required
dependencies using npm i
. After installation, the following commands
can be used to develop & build the component library.
npm run build:all
- This will build the component library in the
dist
folder, the preview app in the dist-app
folder, and the
static storybook site for documenting the components in the
storybook-static
folder.npm run storybook:serve
- Runs a local instance of Storybook, allowing
you to preview/interact with your component documentation.npm run serve
- Runs the preview app.Importing the single file .vue components directly. (If using Vue CLI 3 with Babel or TypeScript, it's recommended that you import its src directory. This will minimize the size of your application by preventing duplicate or unnecessary polyfills.)
Importing the source .vue
file:
// main.js
import HelloWorld from "teste-ui/src/components";
Vue.use(HelloWorld);
Importing the bundled .js
:
// main.js
import HelloWorld from "teste-ui";
Vue.use(HelloWorld);
For single use in a component or small set of components.
Importing the source .vue
file:
// component.vue
import HelloWorld from "teste-ui/src/components/HelloWorld";
export default {
name: "Tester",
components: {
HelloWorld,
Footer: () => import("teste-ui/src/components/Footer"),
}
}
</script>
Importing the bundled .js
components individually.
// component.vue
import { HelloWorld } from "teste-ui";
export default {
name: "Tester",
components: {
HelloWorld
}
}
</script>
The styles are written in SCSS and can be compiled upon building this library.
They can be loaded into an application that doesn't have SCSS loading
capability by referencing/importing the teste-ui.css
file which is
created in the dist
folder of this repository when executing npm run build
.
In order to enable this functionality, an edit has to be made in
vue.config.js
. The line extract: false
must be removed
or set to true, so that the compiled .css
file(s) are created upon build.
import "teste-ui/dist/teste-ui.css";
In order to import and use styles across Vue.js applications, the application will need to have sass
, node-sass
, and sass-loader
installed as dev dependencies. Once installed, the style files may be imported using the syntax below.
// import in vue.js style section
@import "./styles/colors.scss";
After importing, styles may be applied through classes, or through referencing the variables exported by the SASS.
/* importing variables in css */
#nav a.router-link-exact-active {
color: $blue;
}
The structure of this project and component library are meant to emulate a larger-scale Design System (such as Google's Material).
Colors are referenced into components from the styles folder.
The icons are FontAwesome 5, and are loaded
in using Vuetify.js &
@fortawesome/fontawesome-free
Components can be found in the src/components folder in the root directory of this repository.
In order to contribute to this project, fork/clone this repository
locally. After cloning is completed, install the dependencies using npm i
.
You can start a development server by running the commands below in the root directory of this repository. Once the development server is running, view localhost:8080 using Chrome and Vue.js Dev Tools. This is a preview application and will allow you to visualize the components/styles that will ultimately be compiled to the design system library.
npm run serve
or run the Storybook instance instead of the preview app
npm run storybook:serve
To build the project as a library, run npm run build
in the root directory of the repository.
The following commands are used to develop the project:
npm run build
- Build the package distribution bundle.npm run build:app
- Build the preview web application.npm run build:all
- Build the preview application, distribution
bundles, and the Storybook static site.npm run serve
- Start a development server with live-reloading on
changes. (Used for previewing individual components.)npm run lint
- Lint code using ESLint and Vue, AirBnB, and Prettier configs.npm test
- Run unit tests for the individual components in the package.npm run release
- Runs tests, build, and version incrementing
procedures.npm run storybook
- Run Storybook to
see the component library in action.npm run build- storybook
- Build the
Storybook to a static application (for
deploying design system documentation elsewhere)FAQs
<img src="https
We found that teste-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.