
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@startinblox/component-editor
Advanced tools
<solid-editor> is a Sib demo editor to learn the basics of the framework.
It uses CodeMirror : https://codemirror.net/ and it must be related to "code fragment data".
You can see how it work on the techno page of the website Startin'Blox.
Do not hesitate to suggest improvment!
To launch the demo, please run at the root of the component :
python3 -m http.server 8001
In your django project, add the djangoldp_editor package:
# packages.yml
## DjangoLDP packages ##
ldppackages:
djangoldp_editor: djangoldp_editor
Then, run in your shell :
pip install djangoldp_editor
If everything work correctly, you should be able to see the package in your Django Admin.
Then you have to load the initialisation data to make it work. You'll find at the root of the component repository a file named "initialisation-data.json" Put it in the root of your server and run the following command :
python3 manage.py loaddata initialisation-data.json
If there is no error, it works!
Be careful!
The api's urls in the data loaded begin by "localhost". When you set the editor in production, you should have a check of all the content to set you api base url.
For example in codefragments, the first field "body" :
<solid-display data-src="http://127.0.0.1:8000/helloworlds/" fields="helloword"></solid-display>
Should become :
<solid-display data-src="http://yourproductionapi/helloworlds/" fields="helloword"></solid-display>
Once the package is installed, you can use the solid-editor component:
<html>
<head>
<!-- import the module in the head of the page -->
<script type="module" src="https://cdn.skypack.dev/@startinblox/component-editor/"></script>
</head>
<body>
<!-- use the component -->
<solid-editor
data-src="[url]"
paginate-by='1'>
</solid-editor>
</body>
</html>
Notes that the "[url]" should be replace by your code fragment api link.
| Name | Default | Description |
|---|---|---|
data-src | undefined | URL of the LDP editor's code's fragments to display. |
extra-context | {} | Custom extra context |
paginate | 10 | For the proper functioning of the editor, please enter: "paginate-by='1'" |
As the Startin'Blox project is evolving a lot and quickly, we're going to need to update this demo regularly! For any suggestion, you can open an issue or contact the last person who updated it:
Thanks!
FAQs
Editor component for startinblox
The npm package @startinblox/component-editor receives a total of 8 weekly downloads. As such, @startinblox/component-editor popularity was classified as not popular.
We found that @startinblox/component-editor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.