![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@citizenplane/pimp
Advanced tools
Pimp is a components library that contains a set of polished Vue components.
Pimp aims to bring order and consistency to all of our products and processes. We elevate user experience and increase the speed and efficiency of how we design and build products.
pimp
components are served as an npm package.
Add them to your project by running:
// with npm
npm install @citizenplane/pimp
// with yarn
yarn add @citizenplane/pimp
nuxt-config.js
:// nuxt-config.js
...
css: [
{ src: '@citizenplane/pimp/dist/pimp.css' },
],
...
<template>
<cp-button appearance="primary" color="purple" />
</template>
<script>
import CpButton from '@citizenplane/pimp'
export default {
components: {
CpButton,
},
}
</script>
If you want to use any component without having to import them manually, you can create a plugin:
citizenplane-pimp.js
:// ~/plugins/citizenplane-pimp.js
import Vue from 'vue'
import Pimp from '@citizenplane/pimp'
Vue.use(Pimp)
nuxt-config.js
:// nuxt-config.js
...
plugins: [
{ src: '~plugins/citizenplane-pimp.js' },
]
...
<template>
<cp-button appearance="primary" color="purple" />
</template>
Now that you're all set up, you can retrieve components documentation on pimp.citizenplane.com.
We are working on making this project a fully open source. We appreciate any contributions you might make.
In order to contribute to Pimp, you need to fork this repo, and develop on your own local clone.
If you don't know how to do so, follow this guide!
First, move into your local cloned repository with the help of cd
, after that install your node_modules
with:
// with npm
npm install
To actually start seeing the components you have to run the project with the command:
npm run dev
Now go to http://localhost:8080
in your browser.
Now you can start developing!
All the components are under the src/components/
directory and associated code changes will automatically be reflected in the playground.
In order to run the documentation page locally, run these commands in your terminal:
cd docs
npm install
npm run dev
Now you can visit http://localhost:8080/
in your browser.
Documentation code is under the docs
directory. A big portion of these docs are written in markdown using Vuepress, if you've never used Vuepress before, check out these docs.
To be done
Congrats, you're officially a Pimp contributor!
We want to provide only components of the highest quality. We canβt do that without your feedback. If you have any suggestions about what we can do to improve components, please report it directly as an issue or drop us a line at tech@citizenplane.com.
Please respect our Code of Conduct, in short:
Pimp is released under the MIT license.
Copyright Β© 2021 CitizenPlane, Inc.
FAQs
Unknown package
The npm package @citizenplane/pimp receives a total of 136 weekly downloads. As such, @citizenplane/pimp popularity was classified as not popular.
We found that @citizenplane/pimp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 9 open source maintainers 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.