lets see, how many things have I coded for wasteof?

comments (single view)

no its a simple bot I made to test wasteof-client v3, it was running on @wasteof-client3

Can I have some example wasteof-client code please? (Even the boilerplate cos I’m noob)

import { Wasteof2Auth } from 'wasteof-client'
const wasteof = new Wasteof2Auth('username','password')
await wasteof.post('hello world', null)
rpi@raspberrypi:~/Desktop $ node wasteof-funni.js 
(node:4778) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(Use `node --trace-warnings ...` to show where the warning was created)
/home/rpi/Desktop/wasteof-funni.js:1
import { Wasteof2Auth } from 'wasteof-client'
^^^^^^

SyntaxError: Cannot use import statement outside a module
    at Object.compileFunction (node:vm:352:18)
    at wrapSafe (node:internal/modules/cjs/loader:1033:15)
    at Module._compile (node:internal/modules/cjs/loader:1069:27)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1159:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:77:12)
    at node:internal/main/run_main_module:17:47
rpi@raspberrypi:~/Desktop $ 

Put "type": "module" in your package.JSON

View all comments