Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@codersrank/work-experience
Advanced tools
Codersrank Work Experience Widget is a web component that allows you easily integrate work experience information from your CodersRank profile to your personal website:
Widget script available through NPM:
npm i @codersrank/work-experience --save
After installation you need to import and register web component:
import CodersrankWorkExperience from '@codersrank/work-experience';
// register web component as <codersrank-work-experience> element
window.customElements.define('codersrank-work-experience', CodersrankWorkExperience);
Widget can also be downloaded or linked directly from CDN:
<!-- replace x.x.x with actual version -->
<script src="https://unpkg.com/@codersrank/work-experience@x.x.x/codersrank-work-experience.min.js"></script>
In this case it is not required to register web component, it is already registered as <codersrank-work-experience>
element.
As it is a web component the usage is pretty simple, just add widget HTML tag with your CodersRank username
<codersrank-work-experience username="YOUR_USERNAME"></codersrank-work-experience>
Widget supports following properties as HTML element attributes:
Name | Type | Default | Description |
---|---|---|---|
username | string | Your CodersRank username | |
logos | boolean | false | Enables company logos |
max-items | number | Limit number of work experiences to display | |
grid | boolean | false | Enables grid layout. Number of columns is configurable with --grid-columns CSS variable |
For example:
<codersrank-work-experience username="YOUR_USERNAME" logos></codersrank-work-experience>
It is possible to customize widget colors with CSS Custom Properties (CSS Variables) by setting them directly on the widget element with style attribute or in CSS.
There are following CSS Custom Properties are available:
Property | Value |
---|---|
--preloader-color | #72a0a8 |
--item-spacing | 2em |
--item-border-radius | 0px |
--item-border | none |
--item-padding | 0px |
--item-bg-color | 0px |
--grid-columns | 1 |
--logo-size | 48px |
--logo-margin | 16px |
--nested-circle-size | 12px |
--nested-circle-border-width | 2px |
--nested-circle-opacity | 0.25 |
--nested-line-opacity | 0.25 |
--nested-line-width | 2px |
--company-font-size | 1.15em |
--company-font-weight | bold |
--company-text-color | inherit |
--company-opacity | 1 |
--title-font-size | inherit |
--title-font-weight | bold |
--title-text-color | inherit |
--title-opacity | 1 |
--location-text-color | inherit |
--location-opacity | 0.55 |
--location-font-size | inherit |
--location-font-weight | inherit |
--date-text-color | inherit |
--date-opacity | 0.55 |
--date-font-size | inherit |
--date-font-weight | inherit |
--description-font-size | inherit |
--description-font-weight | inherit |
--description-text-color | inherit |
--description-opacity | 1 |
--tag-border | none |
--tag-star-color | #ff9900 |
--tag-bg-color | rgba(0, 0, 100, 0.075) |
--tag-font-size | 0.85em |
--tag-font-weight | bold |
--tag-padding | 0.35em 0.57em |
--tag-margin | 0.28em |
--tag-border-radius | 4px |
--tag-text-color | inherit |
--branding-text-color | inherit |
For example, to change work experience title color to purple
and font-size to 20px
, add this to CSS stylesheet:
codersrank-work-experience {
--title-text-color: purple;
--title-font-size: 20px;
}
Yes please! See the contributing guidelines for details.
This project is licensed under the terms of the MIT license.
FAQs
Codersrank Work Experience Widget
The npm package @codersrank/work-experience receives a total of 183 weekly downloads. As such, @codersrank/work-experience popularity was classified as not popular.
We found that @codersrank/work-experience demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.