
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
@advanced-rest-client/content-type-selector
Advanced tools
A content type dropdown to select request CT header
An element that provides an UI for selecting common content type values.
<content-type-selector contenttype="application/zip">
<paper-item slot="item" data-type="application/zip">Zip file</paper-item>
<paper-item slot="item" data-type="application/7z">7-zip file</paper-item>
</content-type-selector>
npm install --save @advanced-rest-client/content-type-selector
<html>
<head>
<script type="module">
import '@advanced-rest-client/content-type-selector/content-type-selector.js';
</script>
<script src="node_modules/web-animations-js/web-animations-next.min.js"></script>
</head>
<body>
<content-type-selector contenttype="application/json"></content-type-selector>
<script>
window.addEventListener('content-type-changed', (e) => {
console.log(e.detail.value);
});
</script>
</body>
</html>
import { LitElement, html } from 'lit-element';
import '@advanced-rest-client/content-type-selector/content-type-selector.js';
class SampleElement extends LitElement {
render() {
return html`
<content-type-selector .contentType="${this.mediaType}" @contenttype-changed="${this._mediaChangeHandler}"></content-type-selector>
`;
}
_mediaChangeHandler(e) {
console.log(e.target.contentType);
// or e.detail.value
}
}
customElements.define('sample-element', SampleElement);
import {PolymerElement, html} from '@polymer/polymer';
import '@advanced-rest-client/content-type-selector/content-type-selector.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
<content-type-selector contenttype="{{mediaType}}"></content-type-selector>
`;
}
}
customElements.define('sample-element', SampleElement);
git clone https://github.com/advanced-rest-client/content-type-selector
cd content-type-selector
npm install
npm start
npm test
FAQs
A content type dropdown to select request CT header
The npm package @advanced-rest-client/content-type-selector receives a total of 521 weekly downloads. As such, @advanced-rest-client/content-type-selector popularity was classified as not popular.
We found that @advanced-rest-client/content-type-selector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.