
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@codersrank/education
Advanced tools
Codersrank Education Widget is a web component that allows you easily integrate education information from your CodersRank profile to your personal website:
Widget script available through NPM:
npm i @codersrank/education --save
After installation you need to import and register web component:
import CodersrankEducation from '@codersrank/education';
// register web component as <codersrank-education> element
window.customElements.define('codersrank-education', CodersrankEducation);
Widget can also be downloaded or linked directly from CDN:
<!-- replace x.x.x with actual version -->
<script src="https://unpkg.com/@codersrank/education@x.x.x/codersrank-education.min.js"></script>
In this case it is not required to register web component, it is already registered as <codersrank-education> element.
As it is a web component the usage is pretty simple, just add widget HTML tag with your CodersRank username
<codersrank-education username="YOUR_USERNAME"></codersrank-education>
Widget supports following properties as HTML element attributes:
| Name | Type | Default | Description |
|---|---|---|---|
username | string | Your CodersRank username | |
max-items | number | Limit number of education and certificates items to display | |
grid | boolean | false | Enables grid layout. Number of columns is configurable with --grid-columns CSS variable |
education | boolean | true | Defines whether to show education section |
certificates | boolean | true | Defines whether to show certificates section |
certificates-link | boolean | true | Defines whether to show certificate link |
certificates-link | string | See certification | Certificate link text |
education-section-title | string | `` | Education section title |
certificates-section-title | string | `` | Certificates section title |
branding | boolean | true | Displays "Powered by CodersRank" link |
For example:
<codersrank-education
username="YOUR_USERNAME"
certificates="false"
></codersrank-education>
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 | 1em |
--item-border-radius | 0px |
--item-border | none |
--item-padding | 0px |
--item-bg-color | transparent |
--grid-columns | 1 |
--title-font-size | 1.15em |
--title-font-weight | bold |
--title-text-color | inherit |
--title-opacity | 1 |
--details-text-color | inherit |
--details-opacity | 1 |
--details-font-size | inherit |
--details-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 |
--section-title-text-color | inherit |
--section-title-opacity | 1 |
--section-title-font-size | 1.5em |
--section-title-font-weight | bold |
--certificate-link-font-size | 0.85em |
--certificate-link-font-weight | inherit |
--certificate-link-opacity | 1 |
--certificate-link-text-color | #72a0a8 |
--certificate-link-text-decoration | none |
--certificate-link-text-transform | uppercase |
--certificate-link-hover-text-decoration | underline |
--certificate-link-hover-text-color | - |
--certificate-link-active-text-color | - |
--certificate-link-active-text-decoration | - |
--branding-text-color | inherit |
For example, to change education (and certificate) item title color to purple and font-size to 20px, add this to CSS stylesheet:
codersrank-education {
--title-text-color: purple;
--title-font-size: 20px;
}
It is also possible to insert Education widget as an image. It is useful in places where you can't integrate web component, or for example on your GitHub profile README.md page.
Image URL is the following:
https://cr-ss-service.azurewebsites.net/api/ScreenShot?widget=education&username=YOUR_USERNAME
It accepts all widget attributes as query string parameters, plus one extra parameter:
| Name | Type | Default | Description |
|---|---|---|---|
width | number | 800 | Width of widget element (generated image). Note that generated image has @2x pixel density, so the PNG image will be actually generated in @2x size from the one specified here |
style | string | style attribute value (here you can specify all CSS variables) |
For example:
<img
src="https://cr-ss-service.azurewebsites.net/api/ScreenShot?widget=education&username=YOUR_USERNAME&max-items=2&certificates=false&style=--item-bg-color:%23f00;--item-border-radius:10px"
/>
Note that you need to URL Encode some of the characters, for example # should be %23 and #ff0 color should be specified as %23ff0 in query.
Yes please! See the contributing guidelines for details.
This project is licensed under the terms of the MIT license.
FAQs
Codersrank Education Widget
The npm package @codersrank/education receives a total of 79 weekly downloads. As such, @codersrank/education popularity was classified as not popular.
We found that @codersrank/education 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.