
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
@uiw/codemirror-theme-andromeda
Advanced tools
Andromeda theme for cm6, generated from vscode themes.
npm install @uiw/codemirror-theme-andromeda --save
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { andromeda } from '@uiw/codemirror-theme-andromeda';
const state = EditorState.create({
doc: 'my source code',
extensions: [andromeda, javascript({ jsx: true })],
});
Using in React:
import { andromeda, andromedaInit } from '@uiw/codemirror-theme-andromeda';
<CodeMirror theme={andromeda} />
<CodeMirror
theme={andromedaInit({
settings: {
caret: '#c6c6c6',
fontFamily: 'monospace',
}
})}
/>
import { CreateThemeOptions } from '@uiw/codemirror-themes';
export declare const defaultSettingsQuietlight: CreateThemeOptions['settings'];
export declare const andromedaInit: (options?: Partial<CreateThemeOptions>) => import('@codemirror/state').Extension;
export declare const andromeda: import('@codemirror/state').Extension;
import CodeMirror from '@uiw/react-codemirror';
import { andromeda } from '@uiw/codemirror-theme-andromeda';
import { javascript } from '@codemirror/lang-javascript';
function App() {
return (
<CodeMirror
value="console.log('hello world!');"
height="200px"
theme={andromeda}
extensions={[javascript({ jsx: true })]}
onChange={(value, viewUpdate) => {
console.log('value:', value);
}}
/>
);
}
export default App;
import { EditorView } from '@codemirror/view';
import { EditorState } from '@codemirror/state';
import { javascript } from '@codemirror/lang-javascript';
import { andromeda } from '@uiw/codemirror-theme-andromeda';
const state = EditorState.create({
doc: 'my source code',
extensions: [andromeda, javascript({ jsx: true })],
});
const view = new EditorView({
parent: document.querySelector('#editor'),
state,
});
As always, thanks to our amazing contributors!
Made with github-action-contributors.
Licensed under the MIT License.
FAQs
Theme andromeda for CodeMirror.
The npm package @uiw/codemirror-theme-andromeda receives a total of 15,170 weekly downloads. As such, @uiw/codemirror-theme-andromeda popularity was classified as popular.
We found that @uiw/codemirror-theme-andromeda demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.